在新机器上克隆我自己的GitHub上的repo

时间:2018-03-08 03:55:51

标签: repository push git-clone

如何将我自己的GitHub中的repo克隆到新机器并继续顺利推送到同一个repo?

1 个答案:

答案 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