Deleting Git Branches
Both locally & remote
07/02/2025
read time: 1 min
- 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
07/02/2025
read time: 1 min
git branch -D <branchname>git push origin <branchname>