How to disable `npm-merge-drive` in git merge

50 Views Asked by At

When I cherry-pick some commit that has conflicts with package-lock.json file, the npm-merge-drive run

when it failed the cherry-pick fails, how can I remove it?

1

There are 1 best solutions below

0
Raz Luvaton On BEST ANSWER

You can run the following command:

git config --global --remove-section merge.npm-merge-driver

this will remove it...