git 命令 总结

git add .
git add filename
git commit -m'commit 注释'

修改commit 注释

git commit --amend  
git pull origin develop --rebase 
git push
git merge --no-ff origin/develop
git stash list
git stash pop [stash@{1}]
git stash pop === git stash pop stash@{0}

git 撤销

撤销命令
上一篇:git push and git pull


下一篇:Git 基础操作