Final answer:
To delete a branch in GitHub through the CLI, switch to a different branch, then delete locally with 'git branch -d'. If needed, force deletion with 'git branch -D', and delete remotely with 'git push origin --delete'.
Step-by-step explanation:
To delete a branch in GitHub using the command line, you can follow these steps:
- First, ensure that you are not currently on the branch you want to delete. If you are, switch to a different branch using git checkout other-branch.
- To delete a branch locally, use the following command: git branch -d branch-name. Replace branch-name with the name of the branch you want to delete. If the branch has changes that haven't been merged, you may need to use -D instead of -d to force the deletion.
- If you also wish to delete the branch remotely on GitHub, use: git push origin --delete branch-name. This command will remove the branch from your remote repository on GitHub.
It's important to note that deleting branches can affect others who are using the same repository. Always communicate with your team before deleting branches that are shared.