fatal: cannot create directory at /root/wp-content/cache/page_enhanced/ No such a file or directory

后端 未结 5 1990
执笔经年
执笔经年 2021-01-11 16:02

After some pulling changes from server.

I can not any more push anything no matter if I try these:

  • git push or
相关标签:
5条回答
  • 2021-01-11 16:07

    I had a similar problem. I found that I had to close Visual Studio because it was holding onto the directory.

    I recommend that you close all the programs you can if you run into this problem. If your issue is the same as mine you will be able to able to execute your git commands when the program holding on to the reference is shutdown. If you do it systematically then you should find the offender as well.

    0 讨论(0)
  • 2021-01-11 16:08

    Could be several things depending on the OS of the machine you are running and version of git. With more detail I could be more specific.

    On Windows,it's either the permissions of the directories, or it's the length of the directories/paths. On Linux, it would be the permissions. I've also seen cases where the problem is non-allowed characters in directories or files.

    Your best bet to remove the directory is to clone it somewhere that works, like a linux box running root (or a vm or run cygwin), and add this to the .gitignore file: /wp-content/cache/.

    Then, to remove the already cached info, type: git rm -rf –-cached wp-content/cache and then commit and push.

    0 讨论(0)
  • 2021-01-11 16:25

    In my case, I did the following and then it worked.

    1. Close the any application which is currently using/holding the file. For me it was Matlab.
    2. I wanted for "git pull" hence I stored my related file changed files to a different location and revert all my changes in that folder.
    3. And then perform git pull and works fine.
    0 讨论(0)
  • 2021-01-11 16:31

    My solution - as weird as it seems - was to create the directory manually.

    My problem was the same "can't create directory" thing during branch checkout operation. After creating the directory manually I was able to perform git checkout successfuly.

    0 讨论(0)
  • 2021-01-11 16:34

    I recently has this problem,
    and tried running all sorts of commands within git bash on windows 10.
    But none work, and here's what I tried to resolve this.

    • Restart the machine, simple!
      Sometimes the background processes are so many, or intensive that you can no longer stop them.

    • After restart, launch the cmd or cli to run as administrator

    • Run git checkout -f <branch>
      All the changes, if unwanted, will be abandoned in this process.

    • Once in a new branch, you can then git branch -D <branch> since you want to drop it.

    0 讨论(0)
提交回复
热议问题