前言
git 相关知识可以说是开发者的必备常识,虽然目前市面有很多方便的可视化操作工具,但是 git 的指令用起来不仅方便快捷而且显得更加有逼格,况且面试的时候有可能被问到,所以还是有必要学习并掌握的。
1.基础指令
克隆远程仓库代码到本地
添加变更到暂存区
1 2
| git add . git add <fileName>
|
提交变更
1
| git commit -m "your description"
|
1 2 3
| git pull git push git push --set-upstream origin <branch name>
|
2.配置相关指令
1 2
| git config --global user.name "xxx" git config --global user.email "xxx@xxx.com"
|
3.分支相关指令
1 2 3 4 5 6 7 8 9 10 11 12
| git branch git branch -r git branch -a
git branch <branch name> git merge <branch name> git checkout -b <branch name>
git branch -d <branch name> git branch -D <branch name> git push origin --delete <branch name>
|
4.回退相关指令
git 中,HEAD 表示当前版本
1 2 3 4 5 6
| git checkout <file> git reset HEAD <file>
git reset --hard HEAD~ git reset --hard <commit id>
|
5.标签指令
1 2 3 4
| git tag git tag <name> git tag -a <name> git tag -d <name>
|
6.其他指令
1 2 3 4 5 6 7 8
| git status git diff git remote -v git log git log -p git log -2 git log --stat git log --pretty=oneline
|
本文有不到之处欢迎交流指正~