How to Delete a Git Branch Locally and Remotely
One common practice in many development workflows, especially when using a feature branch or Git flow strategy, is that once work is completed on a feature, it is often recommended to delete the branch. Deleting a Branch Locally To delete a branch locally, use the “git branch -d branch_name” command. The -d option stands for … Read more