1、git强制覆盖本地文件(与git远程仓库保持一致)
git reset --hard origin/duyunfei-merge
2、下载代码
git clone http://code.git
如果git clone提示SSL certificate problem: unable to get local issuer certificate,先执行以下操作:
git config --global http.sslVerify false
3、查看当前状态,包括已修改的文件
git status | more
4、查看文件变化
git diff test.h
5、添加提交代码
git add test.h
添加所有已修改代码:git add .
6、提交代码
git commit -m "修复XXbug"
7、更新代码
git pull origin duyunfei
8、推送代码
git push
9、暂存
git stash save "test-cmd-stash"
git stash list
git stash pop/git stash apply 恢复暂存
git stash drop
git stash show -p 查看修改