Skip to content

Instantly share code, notes, and snippets.

View hevele-moda's full-sized avatar

Istvan Hevele hevele-moda

View GitHub Profile
@hevele-moda
hevele-moda / gist:5c8acf66718a8ccce79e150130cbf065
Last active October 11, 2019 12:44
rebase with prettier conflicts
# 1. First pull latest master and yarn install
git checkout master
git pull origin master
yarn install
# 2. Check out your branch and rebase it on the commit before prettier
git checkout <YOUR_BRANCH>
git rebase --onto e96854efabfc690c9b5665129a9c7d54dcb8e282 master
# Fix any conflicts (these will NOT be related to prettier formatting)