mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-25 23:48:34 +02:00
rebuild for fb page post
This commit is contained in:
parent
e053e4003a
commit
00a843754e
6 changed files with 215 additions and 211 deletions
|
@ -16494,6 +16494,7 @@ function getMockVisualization() {
|
|||
var treeString = options.treeString;
|
||||
|
||||
var headless = new HeadlessGit();
|
||||
headless.gitEngine.loadTreeFromString(treeString);
|
||||
return {
|
||||
customEvents: {
|
||||
on: function(key, cb, context) {
|
||||
|
@ -23046,7 +23047,7 @@ require.define("/src/levels/remote/clone.js",function(require,module,exports,__d
|
|||
"Up until this point, Learn Git Branching has focused on teaching the basics of _local_ repository work (branching, merging, rebasing, etc). However now that we want to learn about remote repository work, we need a command to set up the environment for those lessons. `git clone` will be that command",
|
||||
"",
|
||||
"Technically, `git clone` in the real world is the command you'll use to create _local_ copies of remote repositories (from github for example). We use this command a bit differently in Learn Git Branching though -- `git clone` actually makes a remote repository out of your local one. Sure it's technically the opposite meaning of the real command, but it helps build the connection between cloning and remote repository work, so let's just run with it for now.",
|
||||
"",
|
||||
""
|
||||
]
|
||||
}
|
||||
},
|
||||
|
@ -25870,6 +25871,7 @@ function getMockVisualization() {
|
|||
var treeString = options.treeString;
|
||||
|
||||
var headless = new HeadlessGit();
|
||||
headless.gitEngine.loadTreeFromString(treeString);
|
||||
return {
|
||||
customEvents: {
|
||||
on: function(key, cb, context) {
|
||||
|
@ -41778,7 +41780,7 @@ require.define("/src/levels/remote/clone.js",function(require,module,exports,__d
|
|||
"Up until this point, Learn Git Branching has focused on teaching the basics of _local_ repository work (branching, merging, rebasing, etc). However now that we want to learn about remote repository work, we need a command to set up the environment for those lessons. `git clone` will be that command",
|
||||
"",
|
||||
"Technically, `git clone` in the real world is the command you'll use to create _local_ copies of remote repositories (from github for example). We use this command a bit differently in Learn Git Branching though -- `git clone` actually makes a remote repository out of your local one. Sure it's technically the opposite meaning of the real command, but it helps build the connection between cloning and remote repository work, so let's just run with it for now.",
|
||||
"",
|
||||
""
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
1
build/bundle.min.d2ec7de8.js
Normal file
1
build/bundle.min.d2ec7de8.js
Normal file
File diff suppressed because one or more lines are too long
1
build/bundle.min.js
vendored
Normal file
1
build/bundle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -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.d2ec7de8.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
|
||||
|
|
|
@ -37,7 +37,7 @@ exports.level = {
|
|||
"Up until this point, Learn Git Branching has focused on teaching the basics of _local_ repository work (branching, merging, rebasing, etc). However now that we want to learn about remote repository work, we need a command to set up the environment for those lessons. `git clone` will be that command",
|
||||
"",
|
||||
"Technically, `git clone` in the real world is the command you'll use to create _local_ copies of remote repositories (from github for example). We use this command a bit differently in Learn Git Branching though -- `git clone` actually makes a remote repository out of your local one. Sure it's technically the opposite meaning of the real command, but it helps build the connection between cloning and remote repository work, so let's just run with it for now.",
|
||||
"",
|
||||
""
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue