Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. # Do this almost always - don't `git merge`
  2. git pull --rebase
  3.  
  4. # but, do this if it ^ is bollocksed...
  5. git checkout -b master-copy && git checkout master && git reset --hard origin/master
  6.  
  7. # now figure out what needs to go into branch master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement