Я пытаюсь подтолкнуть один из моих проектов к github, и я продолжаю получать эту ошибку:
[email protected]:~/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
Итак, я попробовал и получил следующее:
[email protected]:~/846156 (master) $ git push --set-upstream origin master
fatal: Authentication failed
В другой потоке stackoverflow я предложил следующее, с неутешительными результатами.
[email protected]:~/846156 (master) $ git push -u origin master
fatal: Authentication failed
Затем я попробовал это:
[email protected]:~/846156 (master) $ git config remote.origin.push HEAD
[email protected]:~/846156 (master) $ git push
fatal: Authentication failed
Любые подсказки?