前提・実現したいこと
git初心者です。git pullをするとリポジトリでないとエラー文がでてしまい困っています。
とあるサーバーにgitで管理をしようと下記URLのQiitaの手順通りに進めました。
https://qiita.com/GakuNaitou/items/81dbbd3ea6211af71648
特定のディレクトリでgit initしてadd .で全てを追加、git commitしリポジトリを追加するために
git remote add origin localhost として登録しました。
git remote -vで現在登録されているlocalhostが確認できました。
[root@test files]# git remote -v origin localhost (fetch) origin localhost (push)
ただ、リモートにpushしようとすると下記のエラーになってしまいます。
発生している問題・エラーメッセージ
[root@test files]# git push -u origin --all fatal: 'localhost' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
試したこと
/etc/hostsファイルにはデフォでlocalhostが設定されていることを確認しています。
名前解決の問題ではなさそうですが、原因がわからず苦戦しています。
gitにお詳しい方、ご教授頂きたいです。
あなたの回答
tips
プレビュー