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?

More than 1 year has passed since last update.

Git「fatal: not a git repository (or any of the parent directories): .git 」エラーとリポジトリ紐づけ

Last updated at Posted at 2022-09-23

自分用の解決メモです

したい。できぬ

ローカルフォルダ → リモートリポジトリに紐づけ

解決

既存.gitフォルダの削除
(& 初期化 + リモートリポジトリ登録)

※「.gitconfig」user.name , user.emailは登録済

原因

リポジトリと紐づけたいローカルフォルダに
.gitフォルダが既に存在していたこと


状況別 エラーメッセージ(一部)

⭕正常 .gitファイルがまだ存在しない状態

$ git init
Initialized empty Git repository in (ローカル)
 →(ローカル)でGitリポジトリ初期化したよ🙆

$ git remote add origin (リモートURL)
 →(ぶじ登録できて終わり)🙆

❌失敗1 初期化前から.gitフォルダがある場合

$ git init
fatal: bad config line 1 in file (ローカル)/.git/config
 → .git/configの1行目がダメ🙅

$ git remote add origin (リモートURL) 
fatal: not a git repository (or any of the parent directories): .git
 → 親リポジトリが違うYo🙅

❌失敗2 初期化前からある.git/.gitconfigだけ削除した場合

削除した.gitconfigが作り直されるだけ?

$ git init
Reinitialized existing Git repository in (ローカル)/.git/
 → 再初期化したよん🙆

$ git remote add origin (リモートURL) 
fatal: not a git repository (or any of the parent directories): .git
 → 親リポジトリが違うYo🙅

備考

git remote add ~じゃないコマンドで
削除せずともリモートURL変更できたかも...

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?