Skip to content

Instantly share code, notes, and snippets.

@Wicowyn
Last active November 5, 2015 09:17
Show Gist options
  • Save Wicowyn/e219efac43cb6b3bbcc2 to your computer and use it in GitHub Desktop.
Save Wicowyn/e219efac43cb6b3bbcc2 to your computer and use it in GitHub Desktop.
Git merge sans s'énerver
//Si modification de fichier en cours
git stash //Pour sauvegarder les modification en cours et remettre la branch propre
//un "git status" ne doit vous indiquer aucune modifications
git fetch --all //Pour synchro le dépot local avec le serveur
git merge master
//Si fichiers en conflit
//les ouvrirs, corriger le code
git add mon_fichier_en_conflit.yolo //marquer comme résolu
git commit -m "Merge de la branch master"
git push
//Si il y avait modification de fichier en cours
git stash pop //Ré-applique les modifications d'avant le merge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment