这个问题与我在理解 rebase, branch 和 merge方面的问题有关,并且与问题有关
当您的远程列表中有一个 teamMate 时,您如何提交到您的 github 帐户?
我发现其他人也有同样的问题。该问题似乎与 /etc/xinet.d/ 有关。
问题:无法将我的本地分支推送到我在 Github 的主分支
我跑
git push origin master
我明白了
fatal: 'origin' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
错误消息提示我分支 'origin' 不在我的本地 git 存储库中。这样,Git 就会停止连接到 Github。
这很奇怪,因为我没有删除分支“原点”。
我的 git 树是
dev
* master
ticgit
remotes/Math/Math
remotes/Math/master
remotes/origin/master
remotes/Masi/master
当您在本地 Git 中有一个 teamMate 的分支时,如何将您的本地分支推送到 Github ?
VonC 的回答解决了主要问题。我给我的 ssh 密钥设置了密码。
我跑
$git push github master
我明白了
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
看来我需要以某种方式为 Git 提供密码。
你如何让 Github 询问你的密码而不是依赖 ssh 密钥?