Reputation: 286
Here's the scenario:
So, I update my local copy of development branch (dated 11/16).
command: git pull origin development
But my feature branch (FeatureA) is still based from the previous commit (date 11/15) of development. right?
Question: how to update my feature branch from the updated code in development?
git merge development, this command?
Upvotes: 0
Views: 85
Reputation: 33
git fetch origin
should update your branch with the changes made to the code in development.
Upvotes: 0