Changer le nom de la branche git locale

Exemples de code

16
0

changer le nom de la succursale locale

git branch -m <newname>
13
0

git renommer la branche locale

git branch -m <oldname> <newname>
12
0

modifier le nom de la branche git

$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
1
0

Changer le nom d'une branche dans un dépôt Git

If you're currently on the branch you want to rename:

git branch -m new_name 
Or else:

git branch -m old_name new_name 
You can check with:

git branch -a
As you can see, only the local name changed Now, to change the name also in the remote you must do:

git push origin :old_name
This removes the branch, then upload it with the new name:

git push origin new_name
1
0

changer le nom de la branche

 $ git branch -m <new_name>

Dans d'autres langues

Cette page est dans d'autres langues

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................