Unlink of file Failed. Should I try again?

前端 未结 30 3766
臣服心动
臣服心动 2020-12-02 03:44

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         


        
30条回答
  •  一向
    一向 (楼主)
    2020-12-02 04:24

    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.

提交回复
热议问题