0

I have a remote branch develop and I pulled that branch to my local machine.
I created a new branch called A based on my local develop branch.
Now some of my co-workers have new changes merged to remote develop branch so my local code is not up to date.
Is there a way to pull the latest change in remote develop to my local A branch directly?
I know I can git pull to my local develop and create a new branch from develop and copy the code from A to the new branch but that seems tedious.

thanks

Matthew
  • 9
  • 2
  • 1
    You can pull to your local `develop` branch and then either merge it into `A` or rebase `A` onto the updated `develop`. That would not be tedious. – mkrieger1 Dec 20 '21 at 19:56

0 Answers0