mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-29 09:20:03 +02:00
quick implementation of git status
This commit is contained in:
parent
b944a23790
commit
51a92227c3
4 changed files with 30 additions and 1 deletions
|
@ -117,7 +117,8 @@ var Command = Backbone.Model.extend({
|
|||
revert: /^revert($|\s)/,
|
||||
log: /^log($|\s)/,
|
||||
merge: /^merge($|\s)/,
|
||||
show: /^show($|\s)/
|
||||
show: /^show($|\s)/,
|
||||
status: /^status($|\s)/
|
||||
};
|
||||
},
|
||||
|
||||
|
@ -246,6 +247,7 @@ OptionParser.prototype.getMasterOptionMap = function() {
|
|||
'-am': false, // warning
|
||||
'-m': false
|
||||
},
|
||||
status: {},
|
||||
log: {},
|
||||
add: {},
|
||||
branch: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue