awesome have part of git push working

This commit is contained in:
Peter Cottle 2013-06-11 09:28:14 -07:00
parent 84f180e6a8
commit c7da989845
8 changed files with 336 additions and 42 deletions
src/js/git

View file

@ -65,6 +65,7 @@ var regexMap = {
'git fakeTeamwork': /^git +fakeTeamwork($|\s)/,
'git fetch': /^git +fetch *?$/,
'git pull': /^git +pull($|\s)/,
'git push': /^git +push($|\s)/,
'git clone': /^git +clone *?$/
};
@ -157,6 +158,7 @@ GitOptionParser.prototype.getMasterOptionMap = function() {
pull: {
'--rebase': false
},
push: {},
fakeTeamwork: {}
};
};