Сменете името на локалната клони git

Примерен код

16
0

git branch -m <newname>
13
0

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

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

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

 $ git branch -m <new_name>

Подобни страници

Подобни страници с примери

На други езици

Тази страница на други езици

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