したがって、私は別のマシンにレポセットアップを持っています。私はコミットしてファイルをプッシュし、彼らはgithub.com上で正常に表示されます。今、私は別のマシンにgit init
を走らせました。私は引き離そうとしています。要求されたURLがエラーを返しました:403 github.comにアクセス中に禁止されました
# git remote set-url origin [email protected]:me/someproj.git
fatal: No such remote 'origin'
# git remote add origin https://github.com/me/someproj.git
# git pull
error: The requested URL returned error: 403 Forbidden while accessing https://github.com/me/someproj.git/info/refs
fatal: HTTP request failed
# git remote -v
origin https://github.com/me/someproj.git (fetch)
origin https://github.com/me/someproj.git (push)
# git pull origin
error: The requested URL returned error: 403 Forbidden while accessing https://github.com/me/someproj.git/info/refs
fatal: HTTP request failed
詳細情報を提供してください - そのマシンでどのgitバージョンを使用していますか?ユーザー名とパスワードを設定しましたか?ファイアウォールの背後にいるのか、プロキシを使っていますか? –
git version 1.7.1と私はプロキシの背後にいるわけではありません。私はユーザー/パスを設定したかどうかはわかりません。 – User
これはおそらくあなたの問題です。 '' 'git config --global user.name your_username'''で設定し、パスワードに対しても同じようにしてください。 –