“cara menghapus cabang di github” Kode Jawaban

cara menghapus cabang di github

$ git branch -d <local-branch>
$ git push origin --delete <remote-branch-name>
guruwalker

Hapus Cabang GitHub

# deletes the branch if it has already been fully merged in its upstream branch
$ git branch -d <branch_name> 

# The -D option is an alias for --delete --force, which deletes the branch "irrespective of its merged status." [Source: man git-branch]
$ git branch -D <branch_name>

# Delete Remote Branch
# In most cases, <remote_name> will be origin
$ git push <remote_name> --delete <branch_name>
2B | !2B

Cara menghapus gitub cabang

# If only exists locally:
$ git branch -d <local-branch>
# If already exists remotely:
$ git push origin --delete <remote-branch-name>
# If remote only on website: select symbol with number right of branch drop-down,
# then click red trashcan symbol on right side of list.
Rich Ray

Jawaban yang mirip dengan “cara menghapus cabang di github”

Pertanyaan yang mirip dengan “cara menghapus cabang di github”

Lebih banyak jawaban terkait untuk “cara menghapus cabang di github” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya