rebuild for Issue #121 Pull #121

This commit is contained in:
Peter Cottle 2013-08-05 20:43:10 -07:00
parent 4815a6f30b
commit fc502bcdaf
6 changed files with 8 additions and 5 deletions

View file

@ -90,6 +90,7 @@ Also huge shoutout for everyone who has put up a pull request that was pulled:
* Brad Smith
* Allen Guo
* Timothy Qiu
* Hyunjin CHA
Or reported an issue that was successfully closed!

View file

@ -21761,7 +21761,7 @@ require.define("/levels/rampup/interactiveRebase.js",function(require,module,exp
"",
"Git cherry-pick is great when you know which commits you want (_and_ you know their corresponding hashes) -- it's hard to beat the simplicity it provides.",
"",
"But what about the situation where you don't know what commits you want? Thankfully git has you covered there as well! We can use interactive rebasing for this -- it's is the best way to review a series of commits you're about to rebase.",
"But what about the situation where you don't know what commits you want? Thankfully git has you covered there as well! We can use interactive rebasing for this -- it's the best way to review a series of commits you're about to rebase.",
"",
"Let's dive into the details..."
]
@ -40318,7 +40318,7 @@ require.define("/src/levels/rampup/interactiveRebase.js",function(require,module
"",
"Git cherry-pick is great when you know which commits you want (_and_ you know their corresponding hashes) -- it's hard to beat the simplicity it provides.",
"",
"But what about the situation where you don't know what commits you want? Thankfully git has you covered there as well! We can use interactive rebasing for this -- it's is the best way to review a series of commits you're about to rebase.",
"But what about the situation where you don't know what commits you want? Thankfully git has you covered there as well! We can use interactive rebasing for this -- it's the best way to review a series of commits you're about to rebase.",
"",
"Let's dive into the details..."
]

File diff suppressed because one or more lines are too long

1
build/bundle.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -445,7 +445,7 @@
For a much easier time perusing the source, see the individual files at:
https://github.com/pcottle/learnGitBranching
-->
<script src="build/bundle.js"></script>
<script src="build/bundle.min.f6846e91.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

@ -33,7 +33,7 @@ describe('commands', function() {
var c = new Command({rawStr: 'foo'});
_.each(testCases, function(tCase) {
c.setSupportedMap(tCase.options);
c.setOptionsMap(tCase.options);
c.setGeneralArgs(tCase.args);
c.mapDotToHead();
@ -45,7 +45,7 @@ describe('commands', function() {
);
expect(
j(c.getSupportedMap())
j(c.getOptionsMap())
).toBe(
j(tCase.gitOptions)
);