[] Git pull his feature branch release branch

Currently branch: release, there are code changes
git pull --rebase // the code to pull the latest to resolve the conflict
git checkout -b feature_test // cut local branch
git Branch --set-upstream-to = Origin / feature_test feature_test
// create remote branches and associates
git push --set-upstream origin feature_test // push up

Published 57 original articles · won praise 3 · Views 6177

Guess you like

Origin blog.csdn.net/qq_39830579/article/details/104974903