mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-27 08:28:50 +02:00
Resolves #1004 -- fix arg parsing on git pull
This commit is contained in:
parent
88a6d34e91
commit
ad04b2d8d8
2 changed files with 10 additions and 0 deletions
|
@ -230,6 +230,9 @@ var commandConfig = {
|
|||
|
||||
var commandOptions = command.getOptionsMap();
|
||||
var generalArgs = command.getGeneralArgs();
|
||||
if (commandOptions['--rebase']) {
|
||||
generalArgs = commandOptions['--rebase'].concat(generalArgs);
|
||||
}
|
||||
command.twoArgsForOrigin(generalArgs);
|
||||
assertOriginSpecified(generalArgs);
|
||||
// here is the deal -- git pull is pretty complex with
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue