它是一个开源项目,Github 项目地址: https://github.com/pcottle/learnGitBranching 教程网站地址: https://learngitbranching.js.org
那么“Learning Git Branching”可以说是目前为止最好的教程了,在沙盒里你能执行相应的命令,还能看到每个命令的执行情况; 通过一系列刺激的关卡挑战,逐步深入的学习 Git 的强大功能,在这个过程中你可能还会发现一些有意思的事情。 你会看到“Learning Git Branching”提供的许多关卡。如果你是初学者,从第一关开始逐个...
LearningGitBranching Learning Git Branches Level intro2 Git Branch git checkout -b bugFix Level intro3 Git Merge git checkout -b bugFix git commit git checkout master git commit git merge bugFix Level Intro4 Get Rebase git checkout -b bugFix git commit git checkout master git commit git...
An interactive git visualization and tutorial. Aspiring students of git can use this app to educate and challenge themselves towards mastery of git! - pcottle/learnGitBranching
clone git@github.com:Chutj/Crop_Yield_Prediction_with_Machine_Learning.git 在,clone后的代码需要替换成大家自己上面复制的SSH即可。 随后就可以发现,前述操作中生成的README与License文件都已经在本地文件夹中了。 2.3代码上传至GitHub 接,我们便可以进行代码版本管理与上传。在本文件夹中写好代码,随后...
git clone <your fork of the repo> cd learnGitBranching yarn install git checkout -b newAwesomeFeature vim ./src/js/git/index.js # some changes yarn gulp fastBuild # skips tests and linting, faster build # after building you can open up your browser to the index.html # file generated ...
You can share a link to LearnGitBranching with an arbitrary set of commands that will execute upon load by using thecommandURL parameter. You will also likely want to disable the intro dialog for this case with theNODEMOurl param; here isan exampleto get started. ...
LearnGitBranching is a git repository visualizer, sandbox, and series of educational tutorials and challenges. Its primary purpose is to help developers understand git through the power of visualization (something that's absent when working on the command line)....
LearnGitBranching is a git repository visualizer, sandbox, and series of educational tutorials and challenges. Its primary purpose is to help developers understand git through the power of visualization (something that's absent when working on the command line)....
git clone <your fork of the repo> cd learnGitBranching npm install # to install all the node modules I depend on git checkout -b newAwesomeFeature vim ./src/js/git/index.js # some changes grunt fastBuild # skips tests and linting, faster build # after building you can open up your ...