Tirez les modifications du développement au ranch éloigné sans fusion de branche

#Commit all changes to branch feature_branch (git status shows clean)

#Download latest changes to dev, but dont merge them to local dev
git fetch origin dev

#merges changes from the downloaded version of dev to the feature_branch.
git merge origin/dev
Good Gemsbok