git clone xxxxxxx.git
git checkout -b feature-A develop
git add feature-A git commit -m "add feature A"
git checkout develop
git pull origin develop
git checkout feature-A
git rebase develop
git rebase while(存在冲突) { git status 找到当前冲突文件,编辑解决冲突 git add -u git rebase --continue if( git rebase --abort ) break; }
git checkout develop
git pull
git merge --no-ff feature-A
git push origin develop