Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using git, and made a small commit followed by a large one. I decided to use git rebase to squash the two commits together before pushing them. (I've never done this before.)

So I did:

git rebase -i HEAD~2

This gave me my editor, where I chose to pick the earlier commit and squash the later one. When I saved, git said:

error: cannot stat 'filename': Permission denied

Could not apply sha1 for later commit... initial line of text for that commit

Now:

  • Neither commit appears when I do git log.
  • git status tells me I'm "Not currently on any branch."
  • One file is listed as modified and in the index, and two files are listed as untracked. My first commit had just one file (I think), and my second commit had a good dozen.

What happened!? How do I fix it?

share|improve this question
Are you, by and chance, using git on windows? – Charles Bailey May 11 '11 at 21:35
Yes. I run the commands in a DOS window. – Kyralessa May 11 '11 at 21:36
Are you running a virus checker? Sometimes poor quality virus checker programs cause issues like this. – Greg Hewgill May 11 '11 at 21:40
shrug Microsoft Forefront. But I've been using git for many weeks and never had a "cannot stat" problem before. Forefront isn't scanning at the moment. – Kyralessa May 11 '11 at 21:43
I had the issue with git checkout (so no abort possible as suggested by the accepted answer) but closing all my IDEs let me through. The second answer should be the accepted one – plus- Jan 4 at 13:39

6 Answers

up vote 13 down vote accepted

I've only ever seen this error on Windows and what it seems to mean is that something blocked git from modifying a file at the moment when it tried to a apply a patch.

Windows tends to give processes exclusive access to files when it shouldn't really be necessary, in the past virus checkers have been one source of suspicion but I've never proved this conclusively.

Probably the easiest thing to do is to abort and try again, hoping that it doesn't happen the next time.

git rebase --abort

You can attempt to use git apply and knowledge of what commit git was actually trying to do before doing a git rebase --continue but in all honesty I wouldn't recommend this. Most of the times I've seen this tried there's been a better than evens chance that something gets accidentally missed or messed up.

share|improve this answer
1  
When I try to abort, I get "error: unable to create file same file it couldn't stat (Permission denied)" and then "fatal: Could not reset index file to revision 'big long sha1'. – Kyralessa May 11 '11 at 21:44
Although...it does look as though my commits are back, which is something I was worried might not happen. – Kyralessa May 11 '11 at 21:45
1  
@Kyralessa: Hmmm, have you tried rebooting? If something is persistently locking that file then after a reboot (or something slightly less drastic that releases the file) you should be able to git checkout -- previously-locked-file and be back up and running. – Charles Bailey May 11 '11 at 21:51
8  
Well, I'm still not sure exactly what happened, but as best I can tell, VS 2010 was locking the file (odd because it was a .xml doc file). Process Explorer didn't find anything locking that file, but after I exited VS, I was able to use git checkout to get the file back (in git status it was deleted), and now everything is back as it was before I tried to rebase/squash. Perhaps I should try again, though I feel a bit queasy at this point. – Kyralessa May 11 '11 at 22:04
2  
Follow-up, many moons later: I haven't had this problem again. Rebasing has worked fine, including even interactive rebasing. It must've been a momentary VS file-locking glitch. – Kyralessa Aug 3 '11 at 21:39
show 2 more comments

Try closing any programs that have the folder open, such as editors, explorer windows and FTP programs. This always fixes the issue for me on Windows.

share|improve this answer
Ran into this on a merge. Apparently Gimp had a hold on a file which I had already closed. Closed Gimp itself and all's well. – Jerry May 1 '12 at 19:07
I was getting the same error. I just closed visual studio and everything worked. – Jacob May 9 '12 at 16:45
had a similar issue. Has happened twice since renaming folders in my development branch. Exiting my editor fixes the issue. – Larry May 11 '12 at 11:10
1  
I closed just about everything I could think of before I remembered the WinLess LESS -> CSS converter hiding in the background. – Michael Martin-Smucker Jun 13 '12 at 15:20
1  
Visual Studio held a lock on a nuget package when I tried to merge. Closing VS worked for me. – CodeHxr Nov 27 '12 at 19:40
show 3 more comments

On Windows, it can be a TortoiseGIT process that blocks those files. Open task manager and end process TGitCache.exe.

share|improve this answer
1  
Good to know, though in my case I'm not using TortoiseGit; I just use the command line. – Kyralessa Aug 18 '11 at 18:29

When I see this on my machine, it's worse than just a "some process has the file open". The actual ownership of the file gets jacked up to the point where I (running as administrator) can only access it after rebooting.

Nearest I can tell, IIS is part of the problem. If I switch between two major branches that require a lot of files to modify, git will delete a file or directory (usually DLLs) while IIS is trying to do something or another with it. At this point, the IIS process automatically overwrites the file on disk with a version that's locked and appears to be owned by nobody.

Stopping IIS at this point doesn't do it. Best I've found out to do is to reboot, and remember to stop IIS before changing across major branches in the future.

I know that doesn't really answer the question, but might be helpful to others.

share|improve this answer
Hi, Mike...we're having this exact same problem, but it came out of the blue. We've been using the same process on many projects with IIS running, and never had a problem. One day, though, it starts happening...baffling and frustrating. Have you learned any more since you wrote this? – Ethan Brown Apr 25 '12 at 21:40

If the IDE you use(in case you use one) might have been getting in the way as well. That's what happened to me when using QtCreator.

share|improve this answer

We resolved permission issues by right-clicking sh.exe in Program Files and by setting "Run as Administrator" in the Security tab.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.