如何将我自己的GitHub中的repo克隆到新机器并继续顺利推送到同一个repo?
答案 0 :(得分:0)
在新计算机上,您应确保您的user.name和user.email正确无误。
git config --global user.name
git config --global user.email
然后检查你的git凭证助手(缓存你的https凭证)
git config --global credential.helper
最后,克隆,添加,提交和推回
git clone https://github.com/<me>/<myrepo>
cd myrepo
... add commit
git push -u origin master
像GitHub Desktop这样的GUI可以提供帮助。
你也可以clone with SSH。