Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. git checkout master
  2. git pull
  3. git checkout my-branch
  4. git rebase master
  5.  
  6. # Get conflicts, flip a table.
  7. # (╯°□°)╯︵
  8.  
  9. git checkout . --theirs # we don't care about what's in master, we just want our files and we'll fix eslint errors ourselves
  10. ./node_modules/.bin/eslint . --fix
  11.  
  12. # Do a little spot checking at this point to make sure you don't have semi-colons.
  13.  
  14. git add .
  15. git rebase --continue
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement