2012-01-19 5 views
0

私はgitサーバーからコードを複製しようとしています。私はWindows 7、32ビットのコンピュータを使用しています。私はmsysgitTortoiseGitをインストールしました。msysgitはWindows 7の32ビットコンピュータでエラーを出しています

しかし、私はクローンコマンドを試した時はいつでも、私は次のエラーを取得しています:

git.exe clone --progress -v "http://vcs.hiit.fi/git/hiit_wfa" "C:\Users\athukora\Desktop\HIIT wide focus area\hiit_wfa" 

Cloning into 'C:\Users\athukora\Desktop\HIIT wide focus area\hiit_wfa'... 
error: The requested URL returned error: 401 (curl_result = 22, http_code = 401, sha1 = 9b1b551b5e4b7c7666df38c129d1ecc480c77347) 
error: Unable to find 9b1b551b5e4b7c7666df38c129d1ecc480c77347 under http://vcs.hiit.fi/git/hiit_wfa 
Cannot obtain needed object 9b1b551b5e4b7c7666df38c129d1ecc480c77347 
while processing commit 876cb1098d91238e87c239b8151eeba5330f4480. 
error: Fetch failed. 

誰かがこの問題の原因を把握するために私を助けてくださいことはできますか?

答えて

1

あなたはHTTPプロトコル経由でリポジトリをクローンしていて、サーバが認証(401エラーが「認証が必要」である必要があります

あなたはrepoistoryの資格情報を持って提供、あなたがURLにユーザー名を提供する必要があります。

あなたの資格情報を提供する他の方法について
git.exe clone --progress -v "http://[email protected]/git/hiit_wfa" "<path>" 

Gitは、パスワードの入力を求めます。

See this post

+0

ありがとうございます。これは私のために働いていたコマンドですhttps:// username:[email protected]/git/hiit_wfa destination_folder – Paba

+1

ここに ':password'を入れない方が良いでしょう。パスワードはシェル履歴に保存されています –

関連する問題