244

When I do 'git commit', I'm getting the following:

fatal: Unable to create 'project_path/.git/index.lock': File exists.

However, when I do ls project_path/.git/index.lock it's saying the file doesn't exist. Any thoughts on what I should do? I've also noticed that project_path/.git is owned by root, not sure if that has anything to do with the problem I'm encountering.

git version is 1.7.5.4

edit: It seems that the problem most likely was another process I had running, that was writing (unbeknownst to me) to the project directory. I restarted my machine and then I had no problem committing.

asahi
  • 2,741
  • 2
  • 14
  • 17
  • 3
    It could very well be a permissions problem where Git assumes that since it can't create the file it already exists. Have you tried taking ownership of the directory or executing your command using sudo? –  Feb 14 '12 at 19:10
  • I got same error then I tried squash and reword in one rebase operation. I just del reword and all works fine, and reword on next rebase. – Denis Oct 18 '12 at 13:07
  • 1
    I think your explanation on another app accessing the git repo is correct. Had the same problem during a rebase. Gitx was running. Once I quit it git worked fine. – The Who Mar 12 '13 at 14:58
  • It works for me http://stackoverflow.com/questions/17916339/error-in-deleting-addind-file-from-appharbor-using-git-unable-to-create-f-git – Shailesh Jul 29 '13 at 05:42
  • 2
    @asahi: Do you maybe want to accept an answer? This will help future readers. – MERose Aug 03 '15 at 14:31
  • @MERose: I would, but this was 3 years ago on a different machine from the one I have now, and as can be seen by my updated post, I had figured out a solution. Not sure what can be done to help future readers, but I'm open to suggestions. – asahi Aug 03 '15 at 18:16
  • 2
    Possible duplicate of [Git - fatal: Unable to create '/path/my\_project/.git/index.lock': File exists.](http://stackoverflow.com/questions/7860751/git-fatal-unable-to-create-path-my-project-git-index-lock-file-exists) – Kristján Dec 04 '15 at 15:56
  • 3
    @asahi: You can post the content of your edit (which was the solution) as an answer and then accept that. (Although the more general solution than 'restart the machine' is that another process was accessing the directory; restarting just cuts through the Gordian knot of trying to figure out which one and why. : ) In my case, it was my IDE.) Anyway, people frequently answer their own questions when they find their own solutions, which you did. – Wilson F Jan 13 '16 at 19:49
  • Make sure to use git 2.8.4+ (June 2016). [See my answer below](http://stackoverflow.com/a/37710754/6309) – VonC Jun 08 '16 at 18:59
  • It seemed that killing my BabelJS compiler/watcher in the repo fixed the issue for me. I got the clue from @TheWho – allieferr Mar 27 '18 at 22:37

40 Answers40

411

This may be an old reply but I'm hoping this is more useful on next who need this solution.

On linux/unix/gitbash/cygwin, try

rm -f .git/index.lock

On Windows Command Prompt, try:

del .git\index.lock

Patrick Favre
  • 31,961
  • 9
  • 105
  • 121
Ryan S
  • 5,598
  • 1
  • 18
  • 14
  • 1
    I see that sometimes the lock file gets deleted automatically. Any clue why this file need to be deleted manually sometimes ? – Nrj Jan 06 '15 at 10:28
  • I don't have an index.lock, what do? :( – Alex C May 14 '15 at 17:56
  • 76
    Given that the problem in the question was that he was not able to delete the file, why do you think trying to delete the file should be the solution? – skyking Mar 11 '16 at 06:46
  • 4
    For me closing and opening SourceTree resolved the issue... Temporarily I suppose. – Andrew Aug 04 '16 at 13:34
  • Closing PHPStorm was also required this time. Maybe something in there is locking it. – Andrew Sep 02 '16 at 13:51
  • On Windows close all applications that use git then open the Task Manager and kill all git processes. Then delete the index.lock file. – John Meyer Jan 26 '17 at 18:48
  • 2
    @skyking in the original question there's an error that says `fatal: Unable to create 'project_path/.git/index.lock': File exists.`, it says "File exists", and deleting it would simple solution. Why would I suggest deleting a file if it's not even in the original question? – Ryan S Nov 08 '18 at 14:35
  • Windows: cd .git touch index.lock rm index.lock – Bang Andre Oct 26 '21 at 14:51
48

For Windows:

  • From a powershell console opened as admin, try
> rm -Force ./.git/index.lock
  • If that does not work, you must kill all git.exe processes
> taskkill /F /IM git.exe
SUCCESS: The process "git.exe" with PID 20448 has been terminated.
SUCCESS: The process "git.exe" with PID 11312 has been terminated.
SUCCESS: The process "git.exe" with PID 23868 has been terminated.
SUCCESS: The process "git.exe" with PID 27496 has been terminated.
SUCCESS: The process "git.exe" with PID 33480 has been terminated.
SUCCESS: The process "git.exe" with PID 28036 has been terminated.
> rm -Force ./.git/index.lock
Andrei Epure is hiring
  • 1,658
  • 1
  • 19
  • 28
21

On a Windows platform running Visual Studio 2015 RC (v4.6.00057) in combination with SourceTree (v1.6.14.0) will give this error as well.

Solution: Assuming you want to use source tree as source code manager, simply disable the source control provider inside Visual Studio like this:

  1. Go to: Tools > Options > Source Control
  2. Select Current source control plug-in as: None
WLCyPHlSpC
  • 329
  • 3
  • 3
13

try

rm -f ./.git/index.lock

if you have no other git process running, then just delete the index.lock file of the respective project.

Touseef Murtaza
  • 934
  • 10
  • 16
12
  1. check if the git still running (ps -ef | grep git)
  2. if not, remove the locked file
  3. if yes, kill the git process at first.
Daniel YC Lin
  • 13,229
  • 13
  • 58
  • 83
8
  1. Close every window that is potentially affecting this .git/index.lock file
  2. Delete the .git/index.lock file.
  3. Open your command line editor and cd to the location of your git files.

( If the file is created, simply from cd into that location, then the problem is your editor. Close your editor. Do not use this editor again for this task. Open a different kind of editor - windows power shell or simply cmd. Now you can use git commands to continue)

Gulzar
  • 17,272
  • 18
  • 86
  • 144
Steve Tomlin
  • 2,480
  • 3
  • 22
  • 39
7

Just had this issue... Gitbox was at fault. So maybe you had a GUI running that was causing problems.

MyztikJenz
  • 1,650
  • 14
  • 19
6

This is happening when you are do cancel pulling from origin in the middle.

so what you can do is manually delete index.lock file from your .git directory.

rm -f ./.git/index.lock

cd into you project directory and run this command.

Rahul Vivek
  • 176
  • 1
  • 3
  • 9
    Given that the problem in the question was that he was not able to delete the file, why do you think trying to delete the file should be the solution? – skyking Mar 11 '16 at 06:45
  • +1 @skyking. Deleting a file is obvious, the problem is there is no file to delete and the problem persists. – Catsunami Mar 09 '18 at 20:36
6

del .git\index.lock worked for me.

I was facing this issue while checkout a new branch from master branch.

Checkout easily happened after deleting the index.lock file.

Sid
  • 4,772
  • 14
  • 57
  • 107
5

Probably (it has happened to me), ls command is saying it doesn't exist because current user doesn't have permissions to reach that directory or file.

Remove the lock and make sure you are executing git with the right user in order to avoid permission problems.

If you are in a GNU/Linux box with sudo command:

sudo rm project_path/.git/index.lock

caligari
  • 2,090
  • 20
  • 25
  • In Windows, you can check to see if the folder is read-only with right-click->Properties->Attributes. – Matt Jan 26 '16 at 22:25
  • Given that the problem in the question was that the file was non-existing, why do you think trying to delete the file should be the solution? – skyking Mar 11 '16 at 06:47
  • @skyking Permission problems show the same error. Indeed, I came to this question because the title. I wrote my answer as one possible solution and some votes confirm that it occurs to other people too ;) – caligari Mar 12 '16 at 09:36
  • @caligari Not exactly. Permission problem gives another answer to `ls project_path/.git/index.lock`. – skyking Mar 14 '16 at 11:00
4

Sometimes Git creates a lock file associated with your repo while you are making any changes or most probably when you are using sub modules. The error message will show you the path of the lock file. Fix: Just manually go to the path in terminal and delete the lock file by $ rm index.lock

It should help.

Suhail Bhat
  • 443
  • 4
  • 13
4

I had this problem with SourceTree when switching branch by double-click on it. The problem is not very common and Atlassian knows about it but they decided not to fix it.

Fortunately, there is a solution. Instead of double-clicking on branch you want to switch, just right click and choose "Checkout [branch name]". It should succeed now.

Mark
  • 1,274
  • 15
  • 28
  • thanks, right click > checkout works as an alternative. the error message is quite misleading especially when index.lock does not exist. – Ernest Sep 30 '16 at 21:31
4

I have come across the very same scenario. I even haven't done any changes in my local code. I have just edited a file and revert it. I have simply deleted the below file in hidden .git folder. It worked!

project_path/.git/index.lock

Don D
  • 716
  • 9
  • 19
3

Ran into this problem today where SourceTree had spawned several git processes that kept running even after closing SourceTree. Here is how I fixed it.

  1. Press Ctrl-Alt-Esc or type "Task Manager" in windows start to start Task Manager.
  2. Look for all processes named "git", "git-lfs", etc. as shown in the screenshot below. Right click and select "End process" to kill each of them.
  3. Delete the .git/index.lock file.

enter image description here

mbonness
  • 1,592
  • 1
  • 17
  • 20
3

In My Case Simply go to project_path/.git and delete the index.lock file. try to push your code it will work.

  • Orphaned index.lock file. Generally, if you have an index.lock file, it's because a Git process is running or waiting on a prompt for user input. However, if the editing process is terminated or becomes unresponsive, the index.lock file can be left behind and remain present even if no Git process is running. This orphaned index.lock file will prevent other Git processes from editing the repository. – Su Llewellyn Aug 24 '21 at 15:17
  • Removing an Orphaned index.lock file. Note on Windows it's just "index" with no lock extension. If you suspect that you have an orphaned index.lock file, first verify that you don't have any Git processes running. To check for long-running Git operations, open Task Manager, sort by name, and look for git.exe or other Git-related processes. If you see any, you can wait a few moments for them to complete and try the Git operation again. If you don't have any Git processes running, you can delete the index.lock file and try the Git operation again. – Su Llewellyn Aug 24 '21 at 15:17
  • The above comments are courtesy of the Git documentation on docs.microsoft.com. – Su Llewellyn Aug 24 '21 at 15:19
3

Unless you actually intended for root to own your repo, this sounds like you accidentally ran a Git command as root (maybe even the initial clone/init). If you meant to do that, then you'll have to live with running all Git commands in the repo as root. If you didn't, run sudo chown your-user[:your-group] -R .git to take ownership of it, and then see if things work.

Cascabel
  • 451,903
  • 67
  • 363
  • 314
  • In my case I had messed up the mode of files and directories inside `.git` and I corrected them with: `find .git -type f -exec chmod 644 {} \;` and also `find .git -type d -exec chmod 755 {} \;` I had messed up the modes when moving my git project from one computer to the other – user3405291 Apr 16 '17 at 14:23
  • In my case I added write permission to .git files `sudo chmod g+w .git -R` – Beatriz Fonseca Oct 31 '17 at 17:53
2

I also have this question in windows 10.

when I try del ./.git/index.lock ,it told me cannot remove 'index.lock': Device or resource busy

I finally got the reason:

the computer have two process to use git:

  • git bash
  • cmder

so I use cmder.exe to git commit it will occur errors.

so the solution is use git bash or Terminate the git bash then use cmder.exe

ihewro
  • 21
  • 3
2

Multiple git clients working on same local repository compete for that lock. Each client should wait until the lock is released by the other party to be a good citizen. For us, SourceTree or MSVS appear to be be doing some maintenance in the background while we were are running large commit scripts.

Perhaps 'git' itself should support a '--retriesWhenLocked 5' argument to support retries. or even default to this when run manually.

Here is a PowerShell wrapper around git named "gitr" that retries until index.lock disappears, using default 5 tries, 3 seconds between each. It never removes the index.lock, assuming user should intervene. It was extracted from a larger commit script. It only has minimal testing with simple arguments.

  • Copy script to C:\bin and add C:\bin to $PATH.
  • From PS1> gitr --help
  • From DOS %> powershell gitr --help

gitr.ps1

    #requires -version 2
    <#
    .SYNOPSIS
        gitr
    .DESCRIPTION
        Run "git" as an external process with retry and capturing stdout stderr.
    .NOTES  
      2017/05/16 crokusek: Initial version
    #>

    #---------------------------------------------------------[Initializations]--------------------------------------------------------

    #Set Error Action 
    $ErrorActionPreference = "Stop";

    #----------------------------------------------------------[Declarations]----------------------------------------------------------

    $scriptDir = Split-Path $script:MyInvocation.MyCommand.Path
    #Set-Location $scriptDir

    ## Disabled logging
    # Log File 
    # $logFile = "$($scriptDir)\getr.log"
    # If (Test-Path $logFile) { Clear-Content $logFile }

    #-----------------------------------------------------------[Functions]------------------------------------------------------------

    Function Log([string]$msg, [bool]$echo = $true)
    {
        $timestamp = "$(get-date -Format 'yyyy/MM/dd HH:mm:ss'):  " 
        $fullmsg = $msg -replace '(?ms)^', $timestamp  # the (?ms) enables multiline mode

        ## Disabled Logging 
        # Add-content $LogFile -value $fullmsg

        if ($echo)
        {
            Write-Host $msg
        }
    }

    Function ExecSimple([string]$command, [bool]$echo=$true, [bool]$stopOnNonZeroExitCode=$true)
    {
        $command, $args = $command -split " "
        return Exec $command $args $echo $stopOnNonZeroExitCode
    }

    Function Exec([string]$exe, [string[]]$arguments, [bool]$echo=$true, [bool]$stopOnNonZeroExitCode=$true)
    {   
        # Passing $args (list) as a single parameter is the most flexible, it supports spaces and double quotes

        $orgErrorActionPreference = $ErrorActionPreference 
        Try
        {           
            $error.clear()  # this apparently catches all the stderr pipe lines

            if ($false -and $exe -eq 'git')  # todo make this a generic flag
            {
                $exe = "$($exe) 2>&1"
            }

            $output = ""

            $argflattened = $arguments -join ' '
            Log "`n% $($exe) $($arguments)`n"

            # This way some advantages over Invoke-Expressions or Start-Process for some cases:
            #      - merges stdout/stderr line by line properly, 
            #      - echoes the output live as it is streamed to the current window,
            #      - waits for completion
            #      - works when calling both console and windows executables.
            #       
            $ErrorActionPreference = "Continue"  # required in order to catch more than 1 stderr line in the exception

            if ($echo)
            {
                # Using "cmd.exe" allows the stderr -> stdout redirection to work properly.  Otherwise the 2>&1 runs after PS for 
                # some reason.  When a command such as "git" writes to stderr, powershell was terminating on the first stderr 
                # line (and stops capturing additional lines).
                #
                # but unfortuantely cmd has some bizarre de-quoting rules that weren't working for all cases. 
                #& cmd /c "`"" $exe $arguments "`"" | Tee-Object -variable output | Write-Host | out-null           

                # This is simplest but has some issues with stderr/stdout (stderr caught as exception below)
                #
                & $exe $arguments 2>&1 | tee -variable output | Write-Host | out-null 
            }
            else
            {           
                & $exe $arguments 2>&1 | tee -variable output | out-null 
            }

            $output = $output -join "`r`n"                  

            if ($stopOnNonZeroExitCode -and !$LASTEXITCODE -eq 0)
            {           
                throw [System.Exception] "Exit code ($($LASTEXITCODE)) was non-zero. Output:`n$($output)"
            }       
        }
        catch [System.Management.Automation.RemoteException]
        {
            $output = $_.Exception.ToString().Replace("System.Management.Automation.RemoteException:", "").Trim()

            if ($output.Contains("fatal")) 
            {
                throw 
            }

            if ($echo)
            {
                Log $output
            }
        }
        finally
        {
            $ErrorActionPreference = $orgErrorActionPreference;
        }

        if (-not $output -eq "")
        {
            Log $output $false  # don't echo to screen as the pipe above did    
        }

        return $output
    }

    Function ExecWithRetry([string]$exe, [string[]]$arguments, [bool]$echo=$true, [bool]$stopOnNonZeroExitCode=$true, 
                          [int]$maxRetries = 5, [int]$msDelay = 3000, [AllowNull()][string]$exceptionMustContain = $null)
    {
        for ($i = 0; $i -lt $maxRetries; $i++)
        {
            try
            {
                Exec $exe $arguments $echo $stopOnNonZeroExitCode
                return
            }
            catch
            {
                if (-not [string]::IsNullOrEmpty($exceptionMustContain) -and $_.Exception.ToString().Contains($exceptionMustContain))
                {
                    Log "Last Error from $($exe) is retryable ($($i + 1) of $($maxRetries))" $true
                    Start-Sleep -Milliseconds ($msDelay);
                    continue
                }

                throw
            }
        }

        throw [System.Exception] "Unable to successfully exec '$($exe)' within $($maxRetries) attempts."
    }

    Function GitWithRetry([string[]]$arguments, [bool]$echo=$true)
    {
        ExecWithRetry "git" $arguments $echo -exceptionMustContain "Another git process seems to be running"
    }

#-----------------------------------------------------------[Main]------------------------------------------------------------

function Main([string[]]$arguments)
{   
    GitWithRetry @($arguments)
}


#-------------------------------------- Startup ------------------------------------
try 
{
    Main $args
    Exit 0
}    
catch
{
    #Log "*** A fatal error occured: $($_.Exception)"
    #Read-Host -Prompt "`nA fatal error occurred, press enter to close."    
    exit 1
}
crokusek
  • 4,991
  • 2
  • 42
  • 59
2

Is your code in a directory that Dropbox is syncing? Try pausing Dropbox.

I kept getting the same condition, but once I paused Dropbox (the interface gives you the option to pause for 30 minutes, 1 hour, ...), it never happened again.

Harry Pehkonen
  • 3,018
  • 2
  • 16
  • 19
1

I had this exact same error, but the issue was not the lock file. Instead the issue was that I had copied the contents of another git repo into this repo, including the .git invisible folder. So, SourceTree was confused about which repo I wanted to stage files to (there being a mismatch between the repo SourceTree thought I was in, and the one that the contents of my embedded .git dir said I should be in).

dmohr
  • 2,581
  • 20
  • 22
1

I had this problem with TortoiseGit with Cygwin on Windows. I wasn't able to delete remove ./.git/index.lock even with administrative privileges, I tried both Cygwin and command prompt, it said the file was in use by another process.

I found that I had 2 instances of TortoiseProc.exe running. I killed one of them, and closed all of my windows explorer windows, and then was able to delete the file. I don't know if killing an instance of TortoiseProc.exe was the solution or closing windows explorer windows.

Samuel
  • 6,986
  • 8
  • 41
  • 39
1

The solution for me was to delete the .index file and allow Git to rebuild another.

CAR182
  • 11
  • 1
1

I didn't have an inex.lock file to delete, but what worked for me was removing the Read-Only check from the Attributes window of the folder Properties dialog.

user3071434
  • 133
  • 1
  • 2
  • 12
1

I created an empty index.lock file, deleted it using windows command

1

Starting git 2.8.4 (June 2016), this should not happen anymore.

See issue 755 which should also alleviate the issue (commit 2db0641):

Make sure temporary file handles are not inherited by child processes

Prevent child processes from inheriting a handle to index.lock.

Community
  • 1
  • 1
VonC
  • 1,129,465
  • 480
  • 4,036
  • 4,755
1

In my sourceTree application i am not able to do commit or switch to any other commit/brach. That time shows error like

fatal: Unable to create blah blah blah..

I simply resolve this by goto .git folder(in project Explorer Dir). And delete the Index ----- [file type: LOCK file].Now i get back all access in sourceTree..

please make sure Index lock file.. suppose you dont get file type, change fileview settings in computer. Note: .git folder is normally hidden type of folder.

1

What did it for me was:

git rebase --abort and restart the rebase.

As Andrew mentioned I was also using PHPStorm when this happened. Didn't have to close it though.

Geert
  • 116
  • 3
1

First you have to navigate to the specific folder of your project.. Like if your project name is Firstproject then first go to the directory of the project.. then type cd .git then after navigating to the git folder type del index.lock After the deletion of the file index.lock..You will be able to commit and push as before

1

In my case there was no index.lock file to delete. I was trying to commit 109 files after formatting with prettier. Committing less files at the time is what finally "resolved" the issue.

1

In my case, it was windows, not shut down completely.

Windows is hibernated, refused to mount

Chances are that Windows really is hibernated. Windows does this automatically when you tell it to shutdown normally. The benefit is that you get a faster apparent start-up time.

To shutdown Windows without hybernating, issue the following at a command-prompt (in Windows):

shutdown /s

You might also want include /t 0 for immediate shutdown.

I found a nice tutorial to set up a launcher for this: How to Do a Full Shutdown in Windows 8 Without Disabling Hybrid Boot.

The simpler approach to actually shutting down Windows is to 'restart' (rather than 'shutdown'), but then intercept the boot process and boot Linux instead of letting it boot Windows.

credit: nobar

Mukundhan
  • 2,949
  • 19
  • 33
1

This can also happen if you're using an alternate command line git client, like hub.

I've been using hub as an aliased replacement for git for a couple of years, but recently wrote a bash script that does a bunch of git work in it, and started to get this index lock issue.

I couldn't find the fix until I remembered I was running hub instead of git. I removed that and the problem went away!

Brad Parks
  • 60,289
  • 61
  • 245
  • 309
0

Getting the error:

Using index info to reconstruct a base tree...
Falling back to patching base and 3-way merge...
fatal: Unable to create '/home/user/project/.git/index.lock': File exists.

If no other git process is currently running, this probably means a
git process crashed in this repository earlier. Make sure no other git
process is running and remove the file manually to continue.

But I couldn't find (nor delete) that .git/index.lock file.

In my case, git-cola was running!

It obviously creates that .git/index.lock every once in a while, or caused by the rebase I was doing on the command line and during which I received that error - so git-cola obviously "disturbs" the command line run of Git (or some Git CLI operations).

This is solved by closing git-cola during a command line git rebase.

cslotty
  • 1,466
  • 20
  • 26
0

Sometimes another Git client may interfere when there are multiple installed.

Ie. make sure with the Task Manager or Get-Process that TGitCache from TortoiseGit is not active in the background.

MovGP0
  • 6,619
  • 2
  • 45
  • 39
0

I had the same issue recently. If you will check the whole error message it also says that there are some process that are using the git process that blocks you from deleting index.lock. You may have IDE open like Visual Studio or related software that git is integrated into. Close it and try re-stashing your file. Hope it helps.

Borj
  • 43
  • 7
0

In tasks manager :

  1. develop all process
  2. Kill all git process
  3. Delete locked file
0
  • The problem was solved for me by deleting the repo you are trying to commit the changes and clone the latest version from the remote(If using remote git server).
  • If it's local copy the data from directory and initialize a new git repository.
Patrick Prakash
  • 374
  • 1
  • 5
  • 14
0

For me the culprit was windows security, it was blocking git.exe from running, you can check the notifications tab on the bottom right of your screen.

The message will show like this

Virus and threat protection 
unauthorized changes blocked
controlled folder access blocked git.exe from running

Ayush Kumar
  • 410
  • 4
  • 16
0

If you are using Visual Studio (such as Visual Studio 2019) you can see this error occur when trying to commit changes with Git.

It can happen when you don't have a connection with Team Server. To correct it,

  1. Inside Visual Studio, from the Team menu, select the command Manage Connections.
  2. Look in the Solution Explorer -- you should see Team Explorer - Connect.
  3. Connect to the project you are working on by clicking it in the tree listed. (This step works if you have previously worked on the project.)
  4. Once connected, try your commit again.
Su Llewellyn
  • 2,304
  • 2
  • 18
  • 32
0

i did

  1. removed project.git\index file manually
  2. in terminal git reset
  3. synup project
Ask Shiwa
  • 163
  • 2
  • 7
-2

If you are using GIT BASH For Windows :-

Run these two commands 1. cd .git 2. rm index.lock

  • 2
    Given that the problem in the question was that he was not able to delete the file, why do you think trying to delete the file should be the solution? – skyking Mar 11 '16 at 06:45