0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

git config --global --add safe.directory '...'やったのに、やっぱりダメな時

Last updated at Posted at 2024-12-17

結論

  • Git Bashか
  • PowerShell

で実行しよう!

エラーが出た!!

$ git fetch origin
fatal ...
...

   git config --global --add safe.directory '//xxx.xxx.xxx.xxx/...

...

じゃあコンソール出力でもコピペして・・・

$ git config --global --add safe.directory '//xxx.xxx.xxx.xxx/...'
$ git fetch origin
fatal ...
...

   git config --global --add safe.directory '//xxx.xxx.xxx.xxx/...

...

😢

なんで?

windows環境でcmdつかってませんか?

cmdから実行するとセパレータが

¥¥

になってしまいます。

gitは

\

前提で動作するのでおかしなる。

ぽいですね。

すでにCMDでやっちまったよ...

cmdで実行あとにGitBashなどで再実行入力しても、結果が上書きされないとかなんとか。

その場合は、

~/.gitconfig

から、該当(¥¥で確認すればすぐわかるはず)箇所を削除してから際実行で。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?