mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-29 17:27:22 +02:00
fixed rebase not rebasing in the order of commits in the tree
This commit is contained in:
parent
d2a280fdaa
commit
3ad9264557
1 changed files with 1 additions and 1 deletions
|
@ -2190,7 +2190,7 @@ GitEngine.prototype.getUpstreamDiffSetFromSet = function(stopSet, location) {
|
||||||
|
|
||||||
GitEngine.prototype.getUpstreamDiffFromSet = function(stopSet, location) {
|
GitEngine.prototype.getUpstreamDiffFromSet = function(stopSet, location) {
|
||||||
var result = Graph.bfsFromLocationWithSet(this, location, stopSet);
|
var result = Graph.bfsFromLocationWithSet(this, location, stopSet);
|
||||||
result.sort(this.dateSortFunc);
|
result.reverse();
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue