Reputation: 101
I encountered an error when I commit an image, the process is already open in an other program (like ADOBE Photoshop) and I can't commit and the images are removed.
how can I fix it? Thank for your help.
Upvotes: 7
Views: 4887
Reputation: 508
A fix that worked for me was using WSL (I'm sure git terminal will work too). Then run git checkout <branch>
then git pull
Upvotes: 2
Reputation: 748
You have to stop any process that is inside that folder, if you are using Visual Studio code make sure to disable git, which is enabled by default, or just close Visual studio code, it could be an open terminal as well
"git.enabled": false
Upvotes: 3