git常用命令

git add –all
git status
git commit -m “#$%##”
git checkout master
git checkout -b develop
git merge –no-ff develop
git tag -a 1.0
git branch -d feature
git fetch origin
git rebase origin/master
git push
git push –force origin develop
git pull
git reset HEAD~1

原文地址:https://www.cnblogs.com/wanglichen/p/10593734.html