परिवर्तन स्थानीय git शाखा का नाम

कोड उदाहरण

16
0

स्थानीय शाखा का नाम बदलें

git branch -m <newname>
13
0

git का नाम बदलें स्थानीय शाखा

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

संपादित करें git शाखा का नाम

$ 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
..................................................................................................................

इस श्रेणी में लोकप्रिय

श्रेणी में उदाहरण के साथ लोकप्रिय पृष्ठों