Here's a common workflow hurdle I encounter often:
master is our "stable" branch
$ git status
# On branch master
nothing to commit (working directory clean)
create a module on a branch
$ git checkout -b foo
$ echo "hello" > world
$ git add .
$ git commit -m "init commit for foo module"
$ git checkout master
$ git merge foo
do work on master or other branches
Over the next couple weeks, more code will be committed to master directly and by other branches. foo
branch will go untouched for this time period
resume work/make updates on foo branch
$ git checkout foo
Oh no! foo
is massively out of date! I understand why, but I do need foo
back in sync.
the question
How do I get the latest contents from the master
branch?