mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 07:58:34 +02:00
[Origin] git pull done wow that was easy
This commit is contained in:
parent
a24f62420d
commit
29415cb525
7 changed files with 76 additions and 27 deletions
|
@ -64,7 +64,8 @@ var regexMap = {
|
|||
'git cherry-pick': /^git +cherry-pick($|\s)/,
|
||||
'git fakeTeamwork': /^git +fakeTeamwork *?$/,
|
||||
'git fetch': /^git +fetch *?$/,
|
||||
'git originInit': /^git +originInit *?$/
|
||||
'git pull': /^git +pull($|\s)/,
|
||||
'git clone': /^git +clone *?$/
|
||||
};
|
||||
|
||||
var parse = function(str) {
|
||||
|
@ -151,8 +152,11 @@ GitOptionParser.prototype.getMasterOptionMap = function() {
|
|||
},
|
||||
revert: {},
|
||||
show: {},
|
||||
originInit: {},
|
||||
clone: {},
|
||||
fetch: {},
|
||||
pull: {
|
||||
'--rebase': false
|
||||
},
|
||||
fakeTeamwork: {}
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue