这个问题和我在 理解 rebase、分支和合并的问题有关, 和问题
当您的远程列表中有一个队友时,如何向您的 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
错误消息提示我,分支“ source”不在我的本地 git 存储库中。这样,Git 就不再连接到 Github。
这是奇怪的,因为我没有删除分支’起源’。
我的 Git 树才是
dev
* master
ticgit
remotes/Math/Math
remotes/Math/master
remotes/origin/master
remotes/Masi/master
如何将本地分支推送到 Github ,而在本地 Git 中有一个 Team Mate 的分支?
VonC 的回答解决了主要问题。 我在 ssh 键上加了密码。
我跑步
$git push github master
我明白
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
似乎我需要以某种方式给出 Git 的密码。
如何让 Github 询问您的密码短语,而不是依赖于 ssh 密钥?