Git in Action #14
After merging a branch we often do not need that branch anymore, if that is the case we can delete the branch to save space and reduce git process time. To delete a branch on local:
git branch -d new-fix
The new-fix branch will be deleted if there i...
simplekit.hashnode.dev1 min read