How to delete a GIT branch
Delete a Local Branch: To delete the local branch, use one of the following: git branch -d <branch_name> git branch -D <branch_n...
-->
Delete a Local Branch: To delete the local branch, use one of the following: git branch -d <branch_name> git branch -D <branch_n...
There are 2 ways to do it. You need to use "-m" flag of git to do it. lets do it now. Be in the branch you want to rename We can...