プロジェクトの1つをgithubにプッシュしようとしていますが、次のエラーが発生します。
peeplesoft@jane3:~/846156 (master) $ git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin master
だから私はそれを試してこれを得ました:
peeplesoft@jane3:~/846156 (master) $ git push --set-upstream origin master
fatal: Authentication failed
別のstackoverflowスレッドが次のことを試してみることを提案しましたが、残念な結果になりました。
peeplesoft@jane3:~/846156 (master) $ git push -u origin master
fatal: Authentication failed
それから私はこれを試しました:
peeplesoft@jane3:~/846156 (master) $ git config remote.origin.push HEAD
peeplesoft@jane3:~/846156 (master) $ git push
fatal: Authentication failed
ヒントはありますか?
git
OPが投稿したコマンドが答えを超えて私を助けてくれたことをみんなに知らせたい