“Ubah nama cabang” Kode Jawaban

git ganti nama cabang jarak jauh

# 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

Ubah Nama Cabang Git Lokal

// 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

Edit Nama Cabang Git

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

Ubah nama cabang

git branch -m <newname>
Enchanting Echidna

Ganti nama nama cabang di 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

Jawaban yang mirip dengan “Ubah nama cabang”

Pertanyaan yang mirip dengan “Ubah nama cabang”

Lebih banyak jawaban terkait untuk “Ubah nama cabang” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya