foxfirefey (
foxfirefey) wrote in
dw_dev2013-02-09 10:15 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[site community profile]](https://www.dreamwidth.org/img/comm_staff.png)
Entry tags:
Git tip: moving where a branch is based
I just had to figure out how to make a branch I was developing be based on the "develop" branch instead of the "master" branch. The command to do this ended up being, as far as I can tell:
The advice that finally made sense came from this guide and was explained thusly:
git rebase --onto develop master Bug3426/editotherstyles
The advice that finally made sense came from this guide and was explained thusly:
git rebase --onto topicC topicA topicB
Where topicC is the newbase, topicA is the oldbase, and topicB is the reference for what HEAD of topicC will become.