शाखा का नाम बदलें

कोड उदाहरण

59
0

git शाखा का नाम बदलें

git branch -m <oldname> <newname> # Any Branch
git branch -m <newname> # Current Branch

# For windows if you get "Branch already exists" error
git branch -M <newname>
48
0

नाम बदलें शाखा git

git branch -m <new_name>
13
0

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

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

git दूरस्थ शाखा का नाम बदलें

# Rename the local branch to the new name
git branch -m <old_name> <new_name>

# Delete the old branch on remote - where <remote> is, for example, origin
git push <remote> --delete <old_name>

# Or shorter way to delete remote branch [:]
git push <remote> :<old_name>

# Push the new branch to remote
git push <remote> <new_name>

# Reset the upstream branch for the new_name local branch
git push <remote> -u <new_name>
3
0

git शाखा का नाम बदलें

git branch –m old-name new-name

git push origin :old-name new-name
git push origin –u new-name
2
0

मुख्य करने के लिए शाखा का नाम बदलें

$ git branch -m master main

or create a new one

$ git checkout -b main

इसी तरह के पन्ने

उदाहरणों के साथ समान पृष्ठ

अन्य भाषाओं में

यह पृष्ठ अन्य भाषाओं में है

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