git - Rebase local branch ontop of github branch -
I have a local branch "my_feature" for which I have opened a bridge request on Gitobb. $ git branch my_feature ... made some changes $ git add $ git push origin my_feature
Now another person made a change on the bridge request , And I want to rebase its local branch over here. How can I do this?
I thought
git pull is done on this
my_feature branch, but it does not look like this.
git pull the branch that your branch has configured up. You can see it from git branch -vv .
If it is not what you want to leak against, then they can set up a new upstream and rebase ( git branch - set-up -stream-to = ) Or try again git rebase --onto
Comments
Post a Comment