In my repository I have a branch called aq which I’m working on.

I then committed new work and bugs in master.

What is the best way to get those commits into the aq branch? Create another new branch out of master and merge it with aq?

13 s
13

Check out the aq branch, and rebase from master.

git checkout aq
git rebase master

Leave a Reply

Your email address will not be published. Required fields are marked *