我一直在向我的git区域添加Java项目时遇到问题。我已经尝试了以下命令:
git init # To my Eclipse Java project folder
git remote set-url origin https://github.com/manmedia/MyProjectFolder.git
git commit -a -m "Initial commit"
git push -u origin master
我在StackOverflow上查看了类似的问题并尝试应用建议的解决方案,但没有任何效果。我不断收到以下错误消息:
remote: Repository not found
fatal: repository 'https://github.com/manmedia/MyProjectFolder.git' not found.
我对Git很新,并试图了解这种野兽(与SVN和CVS相比非常不方便,我必须说)。我是否真的需要在Github.com上创建存储库然后将其解析出来,还是可以直接从我的Windows命令提示符处执行?
答案 0 :(得分:1)
我是否真的需要在Github.com上创建存储库
是的,你需要先在GitHuhb上创建一个空 Git仓库。
然后把它分叉出来
不需要fork或clone。在本地执行的其余命令应该可以工作。
我只想在网址中添加您的GitHub登录信息:
git remote set-url origin https://<yourLogin>@github.com/manmedia/MyProjectFolder.git
确保您首先(至少在第一次提交之前)a:
git config --global user.name <yourLogin>
git config --global user.email <yourEmail>