mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-24 04:34:34 +02:00
thanks nikita
This commit is contained in:
parent
904a52fc50
commit
a8866ec593
1 changed files with 1 additions and 1 deletions
|
@ -636,7 +636,7 @@ GitEngine.prototype.rebaseAltID = function(id) {
|
|||
return bits[0].slice(0, -3) + "'^4";
|
||||
}],
|
||||
[/^C(\d+)['][^](\d+)$/, function(bits) {
|
||||
return 'C' + String(bits[1]) + "'^" + String(bits[2] + 1);
|
||||
return 'C' + String(bits[1]) + "'^" + String(Number(bits[2]) + 1);
|
||||
}]
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue