Py学习  »  Git

一个用Git交互可视化教学的项目

滚雪球的哈士奇 • 5 年前 • 266 次点击  
阅读 6

一个用Git交互可视化教学的项目

Learn git branching 这个是Git 的可视化教学项目 是能够让新手快速上手Git的教程

这两天花时间把 Learn Git Branching Main部分的做了一遍。 对理解git分支的使用很有帮助,另外发现git的帮助文档和github的帮助文档都很详细,应该好好读一遍。

使用命令查看 答案
$ show solution
复制代码

答案记录在下面

1.1 Introduction to Git Commits

git commit
git commit
复制代码

1.2 Branching in Git

git branch bugFix
git checkout bugFix
复制代码

1.3 Merging in Git

git checkout -b bugFix
git commit
git checkout master
git commit
git merge bugFix
复制代码

1.4 Rebase Introduction

git checkout -b bugFix
git commit
git checkout master
git commit
git checkout bugFix
git rebase master
复制代码

2.1 Detach yo’ HEAD

git checkout C4
复制代码

2.2 Relative refs (^)

git checkout C4^
复制代码

2.3 Relative refs #2 (~)

git branch -f master C6
git branch -f bugFix C0
git checkout C1
复制代码

2.4 Reversing Changes in Git

git reset local~1
git checkout pushed
git revert pushed
复制代码

3.1 Cherry-pick Intro

git cherry-pick C3 C4 C7
复制代码

3.2 Interactive Rebase Intro

git rebase -i master~4 --aboveAll
复制代码

4.1 Grabbing Just 1 Commit

git checkout master
git cherry-pick C4
复制代码

4.2 Juggling Commits

git rebase -i caption~2 --aboveAll
git commit --amend
git rebase -i caption~2 --aboveAll
git branch -f master caption
复制代码

4.3 Juggling Commits #2

git checkout master
git cherry-pick C2
git commit --amend
git cherry-pick C3
复制代码

4.4 Git Tags

git tag v0 C1
git tag v1 C2
git checkout C2
复制代码

4.5 Git Describe

git commit
复制代码

5.1 Rebasing over 9000 times

git rebase master bugFix
git rebase bugFix side
git rebase side another
git rebase another master
复制代码

5.2 Multiple parents

git branch bugWork master~^2~
复制代码

5.3 Branch Spaghetti

git checkout one
git cherry-pick C4 C3 C2
git checkout two
git cherry-pick C5 C4 C3 C2
git branch -f three C2
复制代码

今天看啥 - 高品质阅读平台
本文地址:http://www.jintiankansha.me/t/sj385SFrFQ
Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/26997
 
266 次点击