mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-27 08:28:50 +02:00
damn! all of git rebasing interactive barebones almost done
This commit is contained in:
parent
a5da6f76b8
commit
41d72793ea
5 changed files with 320 additions and 34 deletions
11
src/git.js
11
src/git.js
|
@ -864,11 +864,8 @@ GitEngine.prototype.rebaseInteractive = function(targetSource, currentLocation)
|
|||
});
|
||||
}
|
||||
|
||||
console.log(toRebase);
|
||||
|
||||
// now do stuff :D since all our validation checks have passed, we are going to defer animation
|
||||
// and actually launch the dialog
|
||||
|
||||
this.animationQueue.set('defer', true);
|
||||
|
||||
var callback = _.bind(function(userSpecifiedRebase) {
|
||||
|
@ -879,9 +876,11 @@ GitEngine.prototype.rebaseInteractive = function(targetSource, currentLocation)
|
|||
this.animationQueue.start();
|
||||
}, this);
|
||||
|
||||
setTimeout(function() {
|
||||
callback(toRebase);
|
||||
}, 2000);
|
||||
new InteractiveRebaseView({
|
||||
callback: callback,
|
||||
toRebase: toRebase,
|
||||
el: $('#dialogHolder')
|
||||
});
|
||||
};
|
||||
|
||||
GitEngine.prototype.rebaseFinish = function(toRebaseRough, stopSet, targetSource, currentLocation) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue