Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. // Remove local branch
  2. git branch -d <branch_name>
  3.  
  4. // Remove remote branch
  5. git push origin -d <branch_name>
  6. // or
  7. git push origin :<branch_name>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement