This is my situation:
I have started a new branch (let's call it
foo
) and did some work on that,I have pushed
foo
to remotesomething needed to be done on
master
, so I switched to master, did the fixes and pushed,
Now: how do I update foo
with master
? Because I need to work on foo
, but I want it to be aligned with the changes in master
. I understand I am not supposed to rebase
a branch that has been published...
Thanks!