4

リモート リポジトリを Google クラウド リポジトリからローカル リポジトリに複製しようとしています。私はKubuntu 14.04システムに取り組んでいます

最初に、空のローカル git リポジトリを作成しました

git init test

次に、次のコマンドで試しました

cd test
git pull https://source.developers.google.com/p/{project_id}
Username for 'https://source.developers.google.com': #########
Password for 'https://########@source.developers.google.com': 

しかし、私は次のエラーが発生します:

致命的: の認証に失敗しましたhttps://source.developers.google.com/p/{project_id}/

Usernamepassword正しい解決策を見つけようとしましたSOが、そうではありGITHUBませんGoogle cloud repository

どんな助けでも大歓迎です。

4

1 に答える 1

4

このコマンドを使用してクローンを作成します

git clone https://source.developers.google.com/p/{project_id}

さらに理解を深めるために、以下のリンクを参照することもできます: https://help.ubuntu.com/lts/serverguide/git.html

于 2015-11-19T06:42:01.687 に答える