I have a feature branch that I work on. Yesterday I did a commit and also merged my feature branch into the remote master branch.
Now I wish to continue working on my branch and add more functionality. However, since yesterday other people have added some additional code to the master branch. How can I "update" my feature branch so that It has all latest changes from master?
I could obviously just pull the latest version of master and simply create a new branch off of it, but I guess there is away to "update" my current feature branch.