git命令

git clone http://
git status
git add .
git commit -m “xxx”
git push origin master
git pull --rebase

修正
git add .txt
git commit --amend

修改倒数第二个提交
git rebase -i HEAD^^
git add .txt
git commit --amend
git rebase --continue

撤销提交
git reset --hard HEAD^

撤销push
git revert HEAD^

切换branch
git checkout branch2

清空并保存改动
git stash
回到改动
git stash pop

上一篇:[笔记]git pull vs git pull --rebase


下一篇:Linux 磁盘空间被吃掉了?这样排查不背锅!