拷貝項目:
git clone <倉庫地址>
創(chuàng)建分支:
git branch <name>
創(chuàng)建并進(jìn)入分支:
git checkout -b <name>
切換分支:
git checkout <name>
查看分支:
git branch --list
查看分支(包括遠(yuǎn)程分支):
git branch -a
查看狀態(tài):
git status
添加所有文件:
git add .
提交:
git commit -m '當(dāng)前提交的描述'
拉取:
git pull
推送:
git push
合并其他分支到到當(dāng)前分支:
git merge --on-ff "描述" <其他分支名>
//完成后 還要push才能提交到服務(wù)器