简体   繁体   中英

How to reset where my branch is pointed from master to develop

I created a branch tool-testing and a pull request to merge into master

This is how I created the branch git checkout -b tool-testing master . After doing some work I created a PR, it was approved but was told not to point to master . Instead, point my branch to develop .

How would I point to the branch named develop now?

You should rebase the branch on top of develop :

git rebase master tool-testing --onto develop`

It is now like you started working on the branch from develop instead of master . Then you can force-push the branch and you need to change the target branch of the PR to develop instead of master .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM