add the first hg command

This commit is contained in:
Siddharth Agarwal 2013-07-30 21:30:47 -07:00
parent ecbe9cb19a
commit acf9c3c657
6 changed files with 33 additions and 3 deletions

View file

@ -9949,6 +9949,16 @@ var commands = {
};
commandConfig = {
hgcommit: {
regex: /^(hg +commit|hg +ci)($|\s)/,
options: [
'--amend',
'-m'
],
execute: function(engine, command) {
return commandConfig.commit.execute(engine, command);
}
},
commit: {
sc: /^(gc|git ci)($|\s)/,
regex: /^git +commit($|\s)/,
@ -23837,6 +23847,16 @@ var commands = {
};
commandConfig = {
hgcommit: {
regex: /^(hg +commit|hg +ci)($|\s)/,
options: [
'--amend',
'-m'
],
execute: function(engine, command) {
return commandConfig.commit.execute(engine, command);
}
},
commit: {
sc: /^(gc|git ci)($|\s)/,
regex: /^git +commit($|\s)/,

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
build/bundle.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -439,7 +439,7 @@
For a much easier time perusing the source, see the individual files at:
https://github.com/pcottle/learnGitBranching
-->
<script src="build/bundle.min.771b212d.js"></script>
<script src="build/bundle.min.d1bd189f.js"></script>
<!-- The advantage of github pages: super-easy, simple, slick static hostic.
The downside? No raw logs to parse for analytics, so I have to include

View file

@ -82,6 +82,16 @@ var commands = {
};
commandConfig = {
hgcommit: {
regex: /^(hg +commit|hg +ci)($|\s)/,
options: [
'--amend',
'-m'
],
execute: function(engine, command) {
return commandConfig.commit.execute(engine, command);
}
},
commit: {
sc: /^(gc|git ci)($|\s)/,
regex: /^git +commit($|\s)/,