You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the following error: fatal: cannot lock ref <REF>: Unable to create <ROOT>/.git/refs/heads/<BRANCH>.lock: File exists.
Researching the problem online, it seems this error can occur if there's another git process working on the files concurrently, which can create another lock file. However, after receiving the error, I checked /.git/refs/heads/.lock, and there was no such file. Any thoughts?
The text was updated successfully, but these errors were encountered:
You're running on a case-insensitive filesystem, but have branches that differ only in case. Do your filtering on a case-sensitive filesystem and it'll work just fine. A search through the issues in this repository for the cannot lock message will find multiple duplicates.
I'm getting the following error:
fatal: cannot lock ref <REF>: Unable to create <ROOT>/.git/refs/heads/<BRANCH>.lock: File exists.
Researching the problem online, it seems this error can occur if there's another git process working on the files concurrently, which can create another lock file. However, after receiving the error, I checked /.git/refs/heads/.lock, and there was no such file. Any thoughts?
The text was updated successfully, but these errors were encountered: