Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

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

Qiita Advent Calendar is held!

Qiita Advent Calendar is an article posting event where you post articles by filling a calendar 🎅

Some calendars come with gifts and some gifts are drawn from all calendars 👀

Please tie the article to your calendar and let's enjoy Christmas together!

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?