Answers for "delete feature branch from github"

5

how to delete a branch in github

$ git branch -d <local-branch>
$ git push origin --delete <remote-branch-name>
Posted by: Guest on March-15-2022
0

How to delete branch github

# 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.
Posted by: Guest on January-17-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language