Guest User

Untitled

a guest
Nov 23rd, 2017
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. git merge --no-ff $BRANCH
  2. git push origin HEAD
  3.  
  4. git merge --squash $BRANCH
  5. git add . && git commit -m "Merge branch '$BRANCH'"
  6. git push origin HEAD
  7.  
  8. git branch -D $BRANCH
  9. git push origin :$BRANCH
Add Comment
Please, Sign In to add comment