教程:https://gitee.com/progit/
一般工作流程:
git clone git@xian/test.git
git pull origin master
git branch -a
git branch dev_sxf
git checkout dev_sxf
git stash
git checkout master
git pull origin master
git checkout dev_sxf
git merge --no-ff master
git stash pop
git diff xxxfile
git add xxxfile
git status
cimsg.txt
文件,写入log信息
git ci -F cimsg.txt
git log
git reset --soft HEAD^
--soft
:不删除工作空间改动代码,撤销commit,不撤销git add .
--mixed
:默认参数,不删除工作空间改动代码,撤销commit,并且撤销git add .
--hard
: 删除工作空间改动代码,撤销commit,撤销git add .
git commit --amend
git push origin dev_sxf
git push origin master:dev_sxf
git push origin --delete xxx