做个git常用命令总结,日常够用,后面再补,欢迎指正~
参考廖雪峰老师的官博: https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/0013745374151782eb658c5a5ca454eaa451661275886c6000
git pull | 拉取代码 |
git status |
查看修改文件状态 |
git add | 代码提交 git add ../ 整个文件提交 |
git commit - m ''文本'' | 代码提交到工作区 |
git push | 代码放入版本库 |
git log | 版本历史 |
git reset --hard HEAD | 退回到最新版本 |
git reset --hard dsd22 | 退回到指定版本,dsd22是git log时某一版本号, |
git stash | 暂存当前修改内容 |
git stash pop | 弹出修改内容 |
git diff |
对比 |
1.git pull冲突时,常用修复指令组合
git stash
git pull
git stash pop
2.推荐使用sourceTree,对比修改文件非常直观,版本管理也很方便