Git remote -v премахване на

Примерен код

104
0

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName
6
0

# The example will remove the github remote. 
# Note that the command will not delete the repository, 
# just the local reference.
git remote rm origin
4
0

$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>
3
0

git remote remove origin
2
0

$ git push <remote_name> :<branch_name>

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

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

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

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

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