git originInit

This commit is contained in:
Peter Cottle 2013-05-26 14:53:05 -07:00
parent 90b8679d19
commit 9173e75c1a
6 changed files with 230 additions and 169 deletions

View file

@ -61,7 +61,8 @@ var regexMap = {
'git merge': /^git +merge($|\s)/,
'git show': /^git +show($|\s)/,
'git status': /^git +status($|\s)/,
'git cherry-pick': /^git +cherry-pick($|\s)/
'git cherry-pick': /^git +cherry-pick($|\s)/,
'git originInit': /^git +originInit *?$/
};
var parse = function(str) {
@ -145,7 +146,8 @@ GitOptionParser.prototype.getMasterOptionMap = function() {
'-i': false // the mother of all options
},
revert: {},
show: {}
show: {},
originInit: {}
};
};