无法将jekyll项目推向github

时间:2017-02-27 21:13:01

标签: git github

我之前已将项目文件夹website命名为重命名" 投资组合"我在github上创建了一个名为portfolio的新存储库,但现在当我尝试将其推高时,我得到以下输入和输出

C:\Users\nezih\Desktop\portfolio (master) λ git add -A

C:\Users\nezih\Desktop\portfolio (master) λ git commit -m "commit" On
branch master nothing to commit, working tree clean

C:\Users\nezih\Desktop\portfolio (master) λ git remote add origin
https://github.com/nezmustafa123/portfolio.git fatal: remote origin already exists.

C:\Users\nezih\Desktop\portfolio (master) λ git push -u origin master
remote: Repository not found. fatal: repository
'https://github.com/nezmustafa123/website.git/' not found

C:\Users\nezih\Desktop\portfolio (master) λ git status On branch
master nothing to commit, working tree clean

我认为问题可能是git仍然认为它被称为" 网站"?

3 个答案:

答案 0 :(得分:0)

您需要重置远程网址

git remote set-url <name> <new-url>

那将是

git remote set-url origin https://github.com/nezmustafa123/portfolio.git

现在尝试推送到origin

答案 1 :(得分:0)

这导致您的本地仓库已经有一个名为origin的远程。您可以设置origin新网址(您使用github repo),就像Libin所说的那样。或者您可以添加远程并将本地master推送到github repo,命令如下:

git remote add upstream https://github.com/nezmustafa123/website.git
git push -u upstream master

答案 2 :(得分:0)

感谢您的回答,我设法通过创建一个新文件夹并将所有文件复制到其中来实现它。