mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 16:08:34 +02:00
details
This commit is contained in:
parent
48f59ffc80
commit
67d2352fa2
2 changed files with 5 additions and 2 deletions
|
@ -151,6 +151,9 @@ var Visualization = Backbone.View.extend({
|
|||
|
||||
fadeTreeIn: function() {
|
||||
this.shown = true;
|
||||
if (!this.paper.canvas) {
|
||||
return;
|
||||
}
|
||||
$(this.paper.canvas).animate({opacity: 1}, this.getAnimationTime());
|
||||
|
||||
this.originToo('fadeTreeIn', arguments);
|
||||
|
|
|
@ -6,7 +6,7 @@ exports.level = {
|
|||
"en_US": "Git push arguments -- Expanded!"
|
||||
},
|
||||
"hint": {
|
||||
"en_US": "Remember you can admit defeat and type in \"see solution\" :P"
|
||||
"en_US": "Remember you can admit defeat and type in \"show solution\" :P"
|
||||
},
|
||||
"startDialog": {
|
||||
"en_US": {
|
||||
|
@ -48,7 +48,7 @@ exports.level = {
|
|||
"Remember, `source` is any location that git will understand:"
|
||||
],
|
||||
"afterMarkdowns": [
|
||||
"Woah! That's a pretty trippy command but it makes sense -- git resolved `foo^` into a location, uploaded whatever commits weren't present yet, and then updated destination."
|
||||
"Woah! That's a pretty trippy command but it makes sense -- git resolved `foo^` into a location, uploaded whatever commits that weren't present yet on the remote, and then updated destination."
|
||||
],
|
||||
"command": "git push origin foo^:master",
|
||||
"beforeCommand": "git clone; go -b foo; git commit; git commit"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue