News

Command to delete a local Git branch A single, straightforward, easy-to-type command will delete your local Git branch: git branch --delete <branchname> That’s it. That’s all you have to do. Just ...
It’s easy to delete a local Git branch. A simple git branch command with the -d flag and the name of the branch will more than suffice. git branch -d feature-branch But if that local Git branch was ...