0

Github デスクトップがインストールされ、実行されています。Git LFS をダウンロードし、リポジトリと大きなファイルを Gitlab サーバーに同期しようとしています。ただし、次のエラーが発生し、続行する方法がわかりません。

Alexanders-MBP:large-repo alexander$ git commit -m "add simplified_2011.geojson"
[master (root-commit) af76f48] add simplified_2011.geojson
 2 files changed, 1 insertion(+)
 create mode 100644 .gitattributes
 create mode 100644 simplified_2011.geojson
Alexanders-MBP:large-repo alexander$ git lfs ls-files
f93b176e1d * simplified_2011.geojson
Alexanders-MBP:large-repo alexander$ git push origin master
fatal: 'origin' 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.

どういうわけか次のステップをスキップしたようです

git clone git@gitlab.example.com:group/project.git

これはセットアップ手順で提供されます

しかし、これを試してみると、これも失敗します...

Alexanders-MBP:large-repo alexander$ git clone git@gitlab.example.com:group/project.git
Cloning into 'project'...
ssh: Could not resolve hostname gitlab.example.com: nodename nor servname provided, or not known
fatal: Could not read from remote repository.

どうすればこれを修正できますか?

4

2 に答える 2

-1

Git を削除します。最初からやり直して、正しい順序で作業してください。申し訳ありませんが、それが修正する最も簡単な方法です。もう一度やり直してください。

編集:

なぜ反対票?

どういうわけか次のステップをスキップしたようです git clone git@gitlab.example.com:group/project.git

インストールでステップが欠落している場合、エラーが発生するため、GIT を削除して、公式の git セットアップ手順に従って再度インストールするの 最も簡単な解決策です。

ただし、 2 番目ssh: Could not resolve hostname gitlab.example.comのエラーは、git ホストのセットアップが正しくないというエラーです。実際に を使用しようとしている場合gitlab.example.com、それは実際の git リポジトリではないため、機能しません。しかし、別のホストを使用していると思いますか?

于 2016-10-31T16:15:48.327 に答える