diff --git a/HowtoGit.md b/HowtoGit.md index 99f2cf22..a67030c3 100644 --- a/HowtoGit.md +++ b/HowtoGit.md @@ -259,6 +259,20 @@ $ git checkout master $ git cherry-pick ~~~ +Si tout se passe bien, il ne demandera rien de plus sauf s'il y a des conflits. Dans ce cas, il faut éditer les fichiers où la commande `git status` indique "modifié des deux côtés : conflit.txt". + +Après avoir effectué ces modifications, il faudra lancer la commande suivante pour confirmer l'action : + +~~~ +$ git cherry-pick --continue +~~~ + +Sinon pour tout anuller : + +~~~ +$ rm .git/CHERRY_PICK_HEAD +~~~ + ### gitignore