forked from BolajiOlajide/a_socials
-
Notifications
You must be signed in to change notification settings - Fork 7
Dealing with yarn.lock file merge conflicts
Male Michael edited this page Jun 27, 2018
·
1 revision
When resolving merge conflicts between the develop branch and feature branch you would need to rebase
git rebase origin/develop
If there is a conflict with the yarn.lock file, checkout the yarn.lock then re-perform the installation
git checkout origin/develop -- yarn.lock
yarn install
This generates a new yarn.lock based on the origin/develop version of yarn.lock, but including the changes you made to your package.json. Then it's just a matter of:
git add yarn.lock
git rebase --continue