If I have a master branch.
I then checkout a work branch and make awesome changes, and some commits.
Then I have to fix something so I go back to master and checkout a branch called fix, fix what I need to do, and merge it into master.
My question is, should I then merge master onto work and continue, or should I continue on work where I was and merge it when I'm done?
I find myself having to go back to all the branches I work on and updating (merging changes to) each branch.
I get the feeling it's best to merge asap, but then find myself having to continuously update all the branches I work on. Is this unnecessary?

