Posts

Showing posts from 2016

How to delete git branch

To delete a local branch $ git branch -d the_local_branch_name To remove a remote branch (Caustion::if you know what you are doing!) $ git push origin :the_remote_branch_name