创建本地分支
git checkout -b fjhbranch develop
基于远程的develop分支创建本地分支
提交本地方
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分支创建本地分支
on branch fjhbranch (在本地分支)
git add .
git commit -m"xxxxx"
git checkout develop
git merge --no-ff fjhbranch
git push origin develop