篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Commande pour les branches git相关的知识,希望对你有一定的参考价值。
# Commande Git
## Commande Git branch
### Crée une branche
````markdown
git branch 'nom de la branche'
````
### Crée une branche et se positionner dessus directement
````markdown
git checkout -b 'nom de la branche'
````
### Se déplacer entre les branches
````markdown
git checkout 'nom de la branche'
````
### Supprimer une branche
````markdown
git branch -d "nom de la branche"
````
## Commande Git merge
````markdown
git merge 'nom de la branche a merge'
````
## Commande Git merge + rbase
````markdown
git pull --rebase
````
## Commande Git Diff
### Affiche les changements effectuer depuis le dernier commit
````markdown
git diff
````
# Git Diff
以上是关于markdown Commande pour les branches git的主要内容,如果未能解决你的问题,请参考以下文章