創(chuàng)建本地分支
git checkout -b fjhbranch develop
基于遠程的develop分支創(chuàng)建本地分支
提交本地方
on branch fjhbranch (在本地分支)
git add .
git commit -m"xxxxx"
merge到遠程倉庫
git checkout develop
git merge --no-ff fjhbranch
git push origin develop
git checkout -b fjhbranch develop
基于遠程的develop分支創(chuàng)建本地分支
on branch fjhbranch (在本地分支)
git add .
git commit -m"xxxxx"
git checkout develop
git merge --no-ff fjhbranch
git push origin develop