mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-01 16:44:30 +02:00
Merge pull request #192 from ptsoccer/master
Fixed couple of issues where the target branch/ref was being ignored
This commit is contained in:
commit
b9f4f6e9a1
1 changed files with 2 additions and 2 deletions
|
@ -579,7 +579,7 @@ var commandConfig = {
|
|||
var generalArgs = command.getGeneralArgs();
|
||||
|
||||
if (commandOptions['-i']) {
|
||||
var args = commandOptions['-i'];
|
||||
var args = commandOptions['-i'].concat(generalArgs);
|
||||
command.twoArgsImpliedHead(args, ' -i');
|
||||
engine.rebaseInteractive(
|
||||
args[0],
|
||||
|
@ -645,7 +645,7 @@ var commandConfig = {
|
|||
}
|
||||
|
||||
if (commandOptions['-B']) {
|
||||
args = commandOptions['-B'];
|
||||
args = commandOptions['-B'].concat(generalArgs);
|
||||
command.twoArgsImpliedHead(args, '-B');
|
||||
|
||||
engine.forceBranch(args[0], args[1]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue