Deleting Git Branches
Both locally & remote
• 1 min read
Git Tutorial
- To delete a local branch it’s
git branch -D <branchname> - To delete a remote branch it’s
git push origin <branchname>
Both locally & remote
git branch -D <branchname>git push origin <branchname>