mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-25 15:38:33 +02:00
ugh ugly bug again with origin loading so sad
This commit is contained in:
parent
11074dba64
commit
dd64536615
3 changed files with 33 additions and 26 deletions
|
@ -7563,10 +7563,15 @@ GitEngine.prototype.makeOrigin = function(treeString) {
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
var originTree = JSON.parse(unescape(treeString));
|
var originTree = JSON.parse(unescape(treeString));
|
||||||
// make an origin branch for each branch mentioned in the tree
|
// make an origin branch for each branch mentioned in the tree if its
|
||||||
|
// not made already...
|
||||||
_.each(originTree.branches, function(branchJSON, branchName) {
|
_.each(originTree.branches, function(branchJSON, branchName) {
|
||||||
var originTarget = branchJSON.target;
|
if (this.refs[ORIGIN_PREFIX + branchName]) {
|
||||||
|
// we already have this branch
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var originTarget = branchJSON.target;
|
||||||
// now this is tricky -- our remote could have commits that we do
|
// now this is tricky -- our remote could have commits that we do
|
||||||
// not have. so lets go upwards until we find one that we have
|
// not have. so lets go upwards until we find one that we have
|
||||||
while (!this.refs[originTarget]) {
|
while (!this.refs[originTarget]) {
|
||||||
|
@ -7579,7 +7584,6 @@ GitEngine.prototype.makeOrigin = function(treeString) {
|
||||||
ORIGIN_PREFIX + branchName,
|
ORIGIN_PREFIX + branchName,
|
||||||
this.getCommitFromRef(originTarget)
|
this.getCommitFromRef(originTarget)
|
||||||
);
|
);
|
||||||
console.log('made tracking branch', originBranch);
|
|
||||||
|
|
||||||
this.setLocalToTrackRemote(this.refs[branchJSON.id], originBranch);
|
this.setLocalToTrackRemote(this.refs[branchJSON.id], originBranch);
|
||||||
}, this);
|
}, this);
|
||||||
|
@ -7762,6 +7766,10 @@ GitEngine.prototype.validateAndMakeBranch = function(id, target) {
|
||||||
};
|
};
|
||||||
|
|
||||||
GitEngine.prototype.makeBranch = function(id, target) {
|
GitEngine.prototype.makeBranch = function(id, target) {
|
||||||
|
if (this.refs[id]) {
|
||||||
|
throw new Error('woah already have that');
|
||||||
|
}
|
||||||
|
|
||||||
var branch = new Branch({
|
var branch = new Branch({
|
||||||
target: target,
|
target: target,
|
||||||
id: id
|
id: id
|
||||||
|
@ -17163,7 +17171,6 @@ GitVisuals.prototype.addBranch = function(branch) {
|
||||||
gitVisuals: this,
|
gitVisuals: this,
|
||||||
gitEngine: this.gitEngine
|
gitEngine: this.gitEngine
|
||||||
});
|
});
|
||||||
console.log('adding new branch', branch.get('id'));
|
|
||||||
|
|
||||||
this.visBranchCollection.add(visBranch);
|
this.visBranchCollection.add(visBranch);
|
||||||
if (this.gitReady) {
|
if (this.gitReady) {
|
||||||
|
@ -18012,11 +18019,6 @@ var VisBranch = VisBase.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
this.get('branch').set('visBranch', this);
|
this.get('branch').set('visBranch', this);
|
||||||
if (this.get('branch').get('id') === 'o/master') {
|
|
||||||
console.log('set visbranch on this', this.get('branch'), this);
|
|
||||||
window.debugVisBranch = this;
|
|
||||||
window.debugBranch = this.get('branch');
|
|
||||||
}
|
|
||||||
var id = this.get('branch').get('id');
|
var id = this.get('branch').get('id');
|
||||||
|
|
||||||
if (id == 'HEAD') {
|
if (id == 'HEAD') {
|
||||||
|
@ -26248,10 +26250,15 @@ GitEngine.prototype.makeOrigin = function(treeString) {
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
var originTree = JSON.parse(unescape(treeString));
|
var originTree = JSON.parse(unescape(treeString));
|
||||||
// make an origin branch for each branch mentioned in the tree
|
// make an origin branch for each branch mentioned in the tree if its
|
||||||
|
// not made already...
|
||||||
_.each(originTree.branches, function(branchJSON, branchName) {
|
_.each(originTree.branches, function(branchJSON, branchName) {
|
||||||
var originTarget = branchJSON.target;
|
if (this.refs[ORIGIN_PREFIX + branchName]) {
|
||||||
|
// we already have this branch
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var originTarget = branchJSON.target;
|
||||||
// now this is tricky -- our remote could have commits that we do
|
// now this is tricky -- our remote could have commits that we do
|
||||||
// not have. so lets go upwards until we find one that we have
|
// not have. so lets go upwards until we find one that we have
|
||||||
while (!this.refs[originTarget]) {
|
while (!this.refs[originTarget]) {
|
||||||
|
@ -26264,7 +26271,6 @@ GitEngine.prototype.makeOrigin = function(treeString) {
|
||||||
ORIGIN_PREFIX + branchName,
|
ORIGIN_PREFIX + branchName,
|
||||||
this.getCommitFromRef(originTarget)
|
this.getCommitFromRef(originTarget)
|
||||||
);
|
);
|
||||||
console.log('made tracking branch', originBranch);
|
|
||||||
|
|
||||||
this.setLocalToTrackRemote(this.refs[branchJSON.id], originBranch);
|
this.setLocalToTrackRemote(this.refs[branchJSON.id], originBranch);
|
||||||
}, this);
|
}, this);
|
||||||
|
@ -26447,6 +26453,10 @@ GitEngine.prototype.validateAndMakeBranch = function(id, target) {
|
||||||
};
|
};
|
||||||
|
|
||||||
GitEngine.prototype.makeBranch = function(id, target) {
|
GitEngine.prototype.makeBranch = function(id, target) {
|
||||||
|
if (this.refs[id]) {
|
||||||
|
throw new Error('woah already have that');
|
||||||
|
}
|
||||||
|
|
||||||
var branch = new Branch({
|
var branch = new Branch({
|
||||||
target: target,
|
target: target,
|
||||||
id: id
|
id: id
|
||||||
|
@ -36273,7 +36283,6 @@ GitVisuals.prototype.addBranch = function(branch) {
|
||||||
gitVisuals: this,
|
gitVisuals: this,
|
||||||
gitEngine: this.gitEngine
|
gitEngine: this.gitEngine
|
||||||
});
|
});
|
||||||
console.log('adding new branch', branch.get('id'));
|
|
||||||
|
|
||||||
this.visBranchCollection.add(visBranch);
|
this.visBranchCollection.add(visBranch);
|
||||||
if (this.gitReady) {
|
if (this.gitReady) {
|
||||||
|
@ -36711,11 +36720,6 @@ var VisBranch = VisBase.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
this.get('branch').set('visBranch', this);
|
this.get('branch').set('visBranch', this);
|
||||||
if (this.get('branch').get('id') === 'o/master') {
|
|
||||||
console.log('set visbranch on this', this.get('branch'), this);
|
|
||||||
window.debugVisBranch = this;
|
|
||||||
window.debugBranch = this.get('branch');
|
|
||||||
}
|
|
||||||
var id = this.get('branch').get('id');
|
var id = this.get('branch').get('id');
|
||||||
|
|
||||||
if (id == 'HEAD') {
|
if (id == 'HEAD') {
|
||||||
|
|
|
@ -341,10 +341,15 @@ GitEngine.prototype.makeOrigin = function(treeString) {
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
var originTree = JSON.parse(unescape(treeString));
|
var originTree = JSON.parse(unescape(treeString));
|
||||||
// make an origin branch for each branch mentioned in the tree
|
// make an origin branch for each branch mentioned in the tree if its
|
||||||
|
// not made already...
|
||||||
_.each(originTree.branches, function(branchJSON, branchName) {
|
_.each(originTree.branches, function(branchJSON, branchName) {
|
||||||
var originTarget = branchJSON.target;
|
if (this.refs[ORIGIN_PREFIX + branchName]) {
|
||||||
|
// we already have this branch
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var originTarget = branchJSON.target;
|
||||||
// now this is tricky -- our remote could have commits that we do
|
// now this is tricky -- our remote could have commits that we do
|
||||||
// not have. so lets go upwards until we find one that we have
|
// not have. so lets go upwards until we find one that we have
|
||||||
while (!this.refs[originTarget]) {
|
while (!this.refs[originTarget]) {
|
||||||
|
@ -357,7 +362,6 @@ GitEngine.prototype.makeOrigin = function(treeString) {
|
||||||
ORIGIN_PREFIX + branchName,
|
ORIGIN_PREFIX + branchName,
|
||||||
this.getCommitFromRef(originTarget)
|
this.getCommitFromRef(originTarget)
|
||||||
);
|
);
|
||||||
console.log('made tracking branch', originBranch);
|
|
||||||
|
|
||||||
this.setLocalToTrackRemote(this.refs[branchJSON.id], originBranch);
|
this.setLocalToTrackRemote(this.refs[branchJSON.id], originBranch);
|
||||||
}, this);
|
}, this);
|
||||||
|
@ -540,6 +544,10 @@ GitEngine.prototype.validateAndMakeBranch = function(id, target) {
|
||||||
};
|
};
|
||||||
|
|
||||||
GitEngine.prototype.makeBranch = function(id, target) {
|
GitEngine.prototype.makeBranch = function(id, target) {
|
||||||
|
if (this.refs[id]) {
|
||||||
|
throw new Error('woah already have that');
|
||||||
|
}
|
||||||
|
|
||||||
var branch = new Branch({
|
var branch = new Branch({
|
||||||
target: target,
|
target: target,
|
||||||
id: id
|
id: id
|
||||||
|
|
|
@ -60,11 +60,6 @@ var VisBranch = VisBase.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
this.get('branch').set('visBranch', this);
|
this.get('branch').set('visBranch', this);
|
||||||
if (this.get('branch').get('id') === 'o/master') {
|
|
||||||
console.log('set visbranch on this', this.get('branch'), this);
|
|
||||||
window.debugVisBranch = this;
|
|
||||||
window.debugBranch = this.get('branch');
|
|
||||||
}
|
|
||||||
var id = this.get('branch').get('id');
|
var id = this.get('branch').get('id');
|
||||||
|
|
||||||
if (id == 'HEAD') {
|
if (id == 'HEAD') {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue