Rebuild for Pull #79 and Pull #78

This commit is contained in:
Peter Cottle 2013-03-21 19:58:02 -07:00
parent 2fb8ce21ae
commit 9f8f01521c
6 changed files with 21 additions and 21 deletions

View file

@ -69,7 +69,7 @@ And the following heroes for assisting in translating:
Also huge shoutout for everyone who has put up a pull request that was pulled:
* Aaron Schrab - 4x!!
* Aaron Schrab - 5x!!
* Stephen Cavaliere
* Andrew Ardill
* Shao-Chung Chen
@ -80,7 +80,7 @@ Also huge shoutout for everyone who has put up a pull request that was pulled:
* Cameron Wills
* Johan ("josso")
* Frode Austvik
* Don Kirkby
* Don Kirkby x2
* "scientific-coder"
* "ace-coder"

View file

@ -5657,7 +5657,7 @@ require.define("/src/js/intl/strings.js",function(require,module,exports,__dirna
///////////////////////////////////////////////////////////////////////////
'already-solved': {
'__desc__': 'When you play in a level that is already solved',
'en_US': 'You have alreaady solved this level, try other levels with "levels" or go back to sandbox with "sandbox"',
'en_US': 'You have already solved this level, try other levels with "levels" or go back to sandbox with "sandbox"',
'zh_CN': '你已经解决了本关,输入 "levels" 尝试其他关卡,或者输入 "sandbox" 回到沙盒中'
},
///////////////////////////////////////////////////////////////////////////
@ -18075,7 +18075,7 @@ require.define("/levels/rampup/1.js",function(require,module,exports,__dirname,_
"type": "ModalAlert",
"options": {
"markdowns": [
"To complete this level, let's detach HEAD to the commit that `bugFix` is pointing to.",
"To complete this level, let's detach HEAD from `bugFix` and attach it to the commit instead.",
"",
"Specify this commit by its hash. The hash for each commit is displayed on the circle that represents the commit."
]
@ -18124,7 +18124,7 @@ require.define("/levels/rampup/2.js",function(require,module,exports,__dirname,_
"",
"Relative commits are powerful, but we will introduce two simple ones here:",
"",
"* Moving upwards once at a time with `^`",
"* Moving upwards one commit at a time with `^`",
"* Moving upwards a number of times with `~<num>`"
]
}
@ -18137,7 +18137,7 @@ require.define("/levels/rampup/2.js",function(require,module,exports,__dirname,_
"",
"So saying `master^` is equivalent to \"the first parent of `master`\".",
"",
"`master^^` is the second parent (or grandparent) of `master`",
"`master^^` is the grandparent (second-generation ancestor) of `master`",
"",
"Let's check out the commit above master here"
],
@ -18257,7 +18257,7 @@ require.define("/levels/rampup/4.js",function(require,module,exports,__dirname,_
"zh_CN": "Git 里的撤销改变"
},
"hint": {
"en_US": "",
"en_US": "Notice that revert and reset take different arguments.",
"fr_FR": "",
"zh_CN": "",
"ko": ""
@ -18301,7 +18301,7 @@ require.define("/levels/rampup/4.js",function(require,module,exports,__dirname,_
"beforeMarkdowns": [
"## Git Revert",
"",
"While reseting works great for local branches on your own machine, it's method of \"rewriting history\" doesn't work for remote branches that others are using.",
"While reseting works great for local branches on your own machine, its method of \"rewriting history\" doesn't work for remote branches that others are using.",
"",
"In order to reverse changes and *share* those reversed changes with others, we need to use `git revert`. Let's see it in action"
],
@ -18320,7 +18320,7 @@ require.define("/levels/rampup/4.js",function(require,module,exports,__dirname,_
"markdowns": [
"To complete this level, reverse the two most recent commits on both `local` and `pushed`.",
"",
"Keep in mind that `pushed` is a remote branch and `local` is a local branch -- that should help you chose your methods."
"Keep in mind that `pushed` is a remote branch and `local` is a local branch -- that should help you choose your methods."
]
}
}
@ -23587,7 +23587,7 @@ require.define("/src/js/intl/strings.js",function(require,module,exports,__dirna
///////////////////////////////////////////////////////////////////////////
'already-solved': {
'__desc__': 'When you play in a level that is already solved',
'en_US': 'You have alreaady solved this level, try other levels with "levels" or go back to sandbox with "sandbox"',
'en_US': 'You have already solved this level, try other levels with "levels" or go back to sandbox with "sandbox"',
'zh_CN': '你已经解决了本关,输入 "levels" 尝试其他关卡,或者输入 "sandbox" 回到沙盒中'
},
///////////////////////////////////////////////////////////////////////////
@ -33069,7 +33069,7 @@ require.define("/src/levels/rampup/1.js",function(require,module,exports,__dirna
"type": "ModalAlert",
"options": {
"markdowns": [
"To complete this level, let's detach HEAD to the commit that `bugFix` is pointing to.",
"To complete this level, let's detach HEAD from `bugFix` and attach it to the commit instead.",
"",
"Specify this commit by its hash. The hash for each commit is displayed on the circle that represents the commit."
]
@ -33119,7 +33119,7 @@ require.define("/src/levels/rampup/2.js",function(require,module,exports,__dirna
"",
"Relative commits are powerful, but we will introduce two simple ones here:",
"",
"* Moving upwards once at a time with `^`",
"* Moving upwards one commit at a time with `^`",
"* Moving upwards a number of times with `~<num>`"
]
}
@ -33132,7 +33132,7 @@ require.define("/src/levels/rampup/2.js",function(require,module,exports,__dirna
"",
"So saying `master^` is equivalent to \"the first parent of `master`\".",
"",
"`master^^` is the second parent (or grandparent) of `master`",
"`master^^` is the grandparent (second-generation ancestor) of `master`",
"",
"Let's check out the commit above master here"
],
@ -33254,7 +33254,7 @@ require.define("/src/levels/rampup/4.js",function(require,module,exports,__dirna
"zh_CN": "Git 里的撤销改变"
},
"hint": {
"en_US": "",
"en_US": "Notice that revert and reset take different arguments.",
"fr_FR": "",
"zh_CN": "",
"ko": ""
@ -33298,7 +33298,7 @@ require.define("/src/levels/rampup/4.js",function(require,module,exports,__dirna
"beforeMarkdowns": [
"## Git Revert",
"",
"While reseting works great for local branches on your own machine, it's method of \"rewriting history\" doesn't work for remote branches that others are using.",
"While reseting works great for local branches on your own machine, its method of \"rewriting history\" doesn't work for remote branches that others are using.",
"",
"In order to reverse changes and *share* those reversed changes with others, we need to use `git revert`. Let's see it in action"
],
@ -33317,7 +33317,7 @@ require.define("/src/levels/rampup/4.js",function(require,module,exports,__dirna
"markdowns": [
"To complete this level, reverse the two most recent commits on both `local` and `pushed`.",
"",
"Keep in mind that `pushed` is a remote branch and `local` is a local branch -- that should help you chose your methods."
"Keep in mind that `pushed` is a remote branch and `local` is a local branch -- that should help you choose your methods."
]
}
}

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

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