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?

No such file or directoryのエラーを解決した方法【Git Bash】

Last updated at Posted at 2024-10-05

エラーの内容

gitbashにてコミットしようとしたところ、下記のエラーが表示されてコミットできなかった。

error: could not lock config file C/User/myname/.gitconfig: No such file or directory

※ちなみに、この状態でメールアドレスやユーザーネームの登録もできなかった。

原因

.gitconfigファイルが格納されているディレクトリのパスは C/Users/myname/ だったが、 C/User/myname/ が指定されていた。(Userにsが足りなかった。)

解決策

ディレクトリのパスを C/Users/myname/ に変更したかったので、下記のコマンドを実行した。

export HOME="/c/Users/myname"

結果

パスを正しいものに設定し直すことができ、コミットできた。

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?