Преименуване на местния клон github

Примерен код

54
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>
10
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>
4
0

преименуване на клон git

git branch -m <new_name> //currenct branch switch name 
git branch -m <select_branch_name> <new_branch_name>
3
0

git преименувате и да е клон на местната

1. 'Start by switching to the local branch which you want to rename:'
git checkout <old_name>

2. 'Rename the local branch by typing:'
git branch -m <new_name>
2
0

преименуване на местния клон github

git branch -m oldname newname
0
0

git преименувате и да е клон

git push origin –u new-name

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

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

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

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

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