查询状态
git status
提交
git add .
git commit -m ""
git push origin HEAD:refs
此为虚拟分支
注意提交之前,pull,解决冲突
回退
git log
git reset --hard commit_id
追加提交
git add
git commit —-amend
git push origin HEAD:refs
添加tag
git tag '0.1.0'
git push --tags
git push origin master
删除tag
git push origin --delete tag
查看分支:git branch
创建分支:git branch
切换分支:git checkout
创建+切换分支:git checkout -b
合并某分支到当前分支:git merge
删除分支:git branch -d
推送: git push