環境
Windows11の、WSL2の、Ubuntu(シェルはBash)を使用して、
マウントしている、SynologyのNAS上でgit init する。
事象
Windows11の、WSL2の、Ubuntu(シェルはBash)を使用して、
マウントしている、SynologyのNAS上でgit init したところ、以下のMSGが出力され、git initできない。
fatal: could not set 'core.filemode' to 'false'
対応
私の場合、「sudo」を使用するとうまくいきました
Git init: fatal: could not set 'core.filemode' to 'false'
Using Team City to check out from a Git Repo. (Gitlabs if it matters)Start with Empty build directory. Get this error:fatal: could not set 'core.filemode' to '...
つーことで、sudo をつけて試したらうまく行った。
$ sudo git init
オワリ。
コメント