About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
macrovve
4/24/2018 - 1:41 PM
share
Share
add_circle_outline
Save
Useful Git Command
Useful Git Command
Useful Git Command.md
content_copy
file_download
Rendered
Source
分支
git branch develop 新建分支
git checkout develop 切换分支
git checkout -b develop 新建并切换分支
git merge develop 合并分支
git branch -d develop删除分支
参考:
Git-分支-分支的新建与合并
消除冲突的时候需要将增加的<<<<<<<,======= 和 >>>>>>> 也都出去掉
回退
git reset --hard HEAD^ 回退到上个版本
git reset --hard 3628164 回退到版本3628164
git reflog 查看之前输入过的命令,来查找commit id,用来向未来回退
clear