I have one local dev branch coming from the origin master. I created a feature branch off of the local dev.
Did some work and pushed the feature up-stream back to origin. It now appears on the server branches.
However, now dev has had changes by other developers... so I did a git pull to my local dev branch, which is now sync-ed up to the server.
Now I need to get those changes into my feature from the local dev before I push feature back up to the origin server. (OR do I directly merge/pull/whatever from server dev into the feature).
Obviously Im confused.
Thanks in advance for you help/clarification.