“Zmień nazwę gałęzi” Kod odpowiedzi

Git Zmień nazwę zdalnego oddziału

# 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>
The Code Doctor

Zmień nazwę gałęzi git lokalną

// If you are in a different branch:
git branch -m old-name new-name

// If you are in the same branch:
git branch -m new-name
Inquisitive Iguana

Edytuj nazwę gałęzi git

$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
Sore Skipper

Zmień nazwę gałęzi

git branch -m <newname>
Enchanting Echidna

Zmień nazwę nazwy gałęzi w git

git branch -m <current_name> <new_name> # Change Name For Any Branch
git branch -m <new_name> # Change Name For Current Branch
Terrible Tern

Odpowiedzi podobne do “Zmień nazwę gałęzi”

Pytania podobne do “Zmień nazwę gałęzi”

Więcej pokrewnych odpowiedzi na “Zmień nazwę gałęzi” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu