[Origin] git pull done wow that was easy

This commit is contained in:
Peter Cottle 2013-05-27 10:56:35 -07:00
parent a24f62420d
commit 29415cb525
7 changed files with 76 additions and 27 deletions

View file

@ -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: {}
};
};