Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unlink of file Failed. Should I try again?

Tags:

git

unlink

Something wrong is going on with one of the files in my local git repository. When I'm trying to change the branch it says:

Unlink of file 'templates/media/container.html' failed. Should I try again? (y/n) 

What could that mean?

like image 374
Pol Avatar asked Dec 08 '10 16:12

Pol


People also ask

What is unlink of file in Git?

What does it mean? Answered by anu rhea. Getting message of git unlink of file failed means that another program is using the same file, which is preventing git from "moving" the file into or out of the working directory when you are attempting to change branches.


1 Answers

This could mean that another program is using the file, which is preventing git from "moving" the file into or out of the working directory when you are attempting to change branches.

I have had this happen on Windows Vista where eclipse is the program "using" the file. The file may not be actually open in eclipse but may have been opened by a process run by eclipse.

In this event, try closing the file in any applications that might have used it. If that doesn't work, completely exit any applications which may have opened the file.

like image 97
Melissa Avatar answered Oct 15 '22 10:10

Melissa