这个问题与我在理解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。
这很奇怪,因为我还没有删除分支“ origin”。
我的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密钥?