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