Rebuilding for Lukes pull

This commit is contained in:
Peter Cottle 2013-02-18 07:41:30 -08:00
parent 25b1cda900
commit a954a659ce
7 changed files with 13 additions and 13 deletions

View file

@ -57,7 +57,7 @@ Also huge shoutout for everyone who has put up a pull request that was pulled:
* Andrew Ardill * Andrew Ardill
* Shao-Chung Chen * Shao-Chung Chen
* Tobias Pfeiffer * Tobias Pfeiffer
* Luke Kysow * Luke Kysow - 2
* Adam Brodzinski * Adam Brodzinski
* Hamish Macpherson * Hamish Macpherson

View file

@ -12953,12 +12953,12 @@ var Warning = Errors.Warning;
var CommandResult = Errors.CommandResult; var CommandResult = Errors.CommandResult;
var shortcutMap = { var shortcutMap = {
'git commit': /^gc($|\s)/, 'git commit': /^(gc|git ci)($|\s)/,
'git add': /^ga($|\s)/, 'git add': /^ga($|\s)/,
'git checkout': /^go($|\s)/, 'git checkout': /^(go|git co)($|\s)/,
'git rebase': /^gr($|\s)/, 'git rebase': /^gr($|\s)/,
'git branch': /^gb($|\s)/, 'git branch': /^(gb|git br)($|\s)/,
'git status': /^gs($|\s)/, 'git status': /^(gst|gs|git st)($|\s)/,
'git help': /^git$/ 'git help': /^git$/
}; };
@ -18820,12 +18820,12 @@ var Warning = Errors.Warning;
var CommandResult = Errors.CommandResult; var CommandResult = Errors.CommandResult;
var shortcutMap = { var shortcutMap = {
'git commit': /^gc($|\s)/, 'git commit': /^(gc|git ci)($|\s)/,
'git add': /^ga($|\s)/, 'git add': /^ga($|\s)/,
'git checkout': /^go($|\s)/, 'git checkout': /^(go|git co)($|\s)/,
'git rebase': /^gr($|\s)/, 'git rebase': /^gr($|\s)/,
'git branch': /^gb($|\s)/, 'git branch': /^(gb|git br)($|\s)/,
'git status': /^gs($|\s)/, 'git status': /^(gst|gs|git st)($|\s)/,
'git help': /^git$/ 'git help': /^git$/
}; };

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

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

View file

@ -12,7 +12,7 @@ var shortcutMap = {
'git checkout': /^(go|git co)($|\s)/, 'git checkout': /^(go|git co)($|\s)/,
'git rebase': /^gr($|\s)/, 'git rebase': /^gr($|\s)/,
'git branch': /^(gb|git br)($|\s)/, 'git branch': /^(gb|git br)($|\s)/,
'git status': /^(gst|git st)($|\s)/, 'git status': /^(gst|gs|git st)($|\s)/,
'git help': /^git$/ 'git help': /^git$/
}; };