1

友達のレポをクローンして、挿入したコメントをプッシュしようとしました

git push -u origin reviewnotesbranch

入力したユーザー名とパスの入力を求められますが、エラーが発生します

remote: Anonymous access to user/cs288.git denied
fatal: Authentication failed for 'https://github.com/user/cs288.git/'

私は自分の

git config --list

私のuser.emailとuser.nameはまだ私の電子メールと名前に正しく設定されているようです。何が問題で、どうすれば修正できますか?

編集:

core.symlinks=false
core.autocrlf=false
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bunchle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
user.email=mygit'semail
user.name=myname
core.editor=emacs
corerepositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
core.hidedotfiles=dotGitOnly
then branches and remotes with https and ssh links

EDIT2: MY プロジェクトの共同作業者からいくつかの変更を取得し、それらをリベースした後、MY OWN git に対して同じ匿名アクセスが拒否されました。自分のhttpsのURLの認証に失敗しました

4

3 に答える 3

1

このリポジトリが見つかりませんでした: https://github.com/user/cs288.git

あなたremote origingit config

次を使用して新しい URL を設定します。

git remote set-url origin <newurl> [<oldurl>]

参照: https://www.kernel.org/pub/software/scm/git/docs/git-remote.html

于 2013-10-22T21:11:35.253 に答える
0
remote: Anonymous access to user/cs288.git denied

「匿名」という重要な言葉に注意してください。あなたは匿名である必要があります。https 経由で資格情報を提供するか、(はるかに簡単な) ssh に切り替えます。

于 2013-10-22T21:23:56.953 に答える