为什么我的git无法推送到我的github帐户?

时间:2019-05-20 13:49:25

标签: git github

我创建了一个github存储库,然后进入了我计算机上的本地环境,并且做了git config -l,我认为我所做的一切都正确,但是现在当我推送时遇到错误。我不确定如何将我的git local链接到我的github。

我已经与fatal: 'master' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 进行了核对,一切看起来都正确。

mtcars %>% mutate_at(vars(mpg:gear), funs(. - lag(., 1)))

1 个答案:

答案 0 :(得分:2)

您必须将Github存储库添加为本地存储库上的远程存储。

git remote add origin "Your remote repository url"

修改 如果远程源已经存在,请尝试:

git remote set-url origin "Your remote repository url"