プログラミング インフラ

"git clone"→"git status"したら、エラー:fatal: not a git repository (or any of the parent directories): .git

スポンサーリンク

<事象>


"git clone"でリモートリポジトリからローカルにクローンした後、
"git status"でgitの状態を確認しようとしたら、以下のようなエラーが出ました。

MacBookPro:~ home$ git status
fatal: not a git repository (or any of the parent directories): .git

試しに"git branch"や"git remote -v"も試してみましたが、同じ結果です。

MacBookPro:~ home$ git branch
fatal: not a git repository (or any of the parent directories): .git

MacBookPro:~ home$ git remote -v
fatal: not a git repository (or any of the parent directories): .git

<原因>

コマンドを入力した、ディレクトリ誤り
"git clone"を実行した後、カレントディレクトリを移動する必要がある。
クローンしたディレクトリはコマンドを実行したディレクトリの直下に作成される。

<解決策>

"cd クローンしたリポジトリ名"でディレクトリを移動し、再度"git status"コマンドを実行


MacBookPro:~ home$  cd reposito/ 

//再度、"git status"を実行
MacBookPro:~ home$  git status 
On branch master 
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
* master 

MacBookPro:~ home$  git branch 
* master

MacBookPro:~ home$  git remote -v 
origin  git@github.com:yuskillupup/reposito.git (fetch) 
origin  git@github.com:yuskillupup/reposito.git (push) 


うまくいきました!

完全なうっかりミスですね!笑

同じように詰まってしまった方の参考になれば嬉しいです!
ではまた。

スポンサーリンク

-プログラミング, インフラ
-,

© 2024 エンジニア×ライフハック Powered by AFFINGER5