我是Atom Editor的新手。当前正在开发一个PHP项目,该项目需要推送到Github存储库中。我已经在Atom IDE终端本身中使用git init命令初始化了项目文件夹。当我尝试将更改推入git时。我按照终端中给出的命令抛出了各种错误消息,但是它们也不起作用。
当我尝试执行git push
时,我得到以下错误消息
致命:”似乎不是git存储库
然后我再次执行git init
和git commit -m "message"
,但是它再次要求我使用下面的命令将所做的相同更改上传到上游
git push --set-upstream master master
继续获取这两个错误。
答案 0 :(得分:0)
如果IDE某种程度上失败了,请退后一步,转到命令行(shell或CMD)
在项目的根文件夹中,检查是否存在.git/
子文件夹。
键入git remote -v
。
如果您没有看到带有远程仓库URL的条目“ origin
”,请输入:
git remote add origin /url/remote/repo
您应该看到:
C:\Users\vonc\git\go-prompt>git remote -v
origin https://github.com/VonC/go-prompt (fetch)
origin https://github.com/VonC/go-prompt (push)
然后,假设您已添加/提交文件,请重试
git push -u origin master
# not master master, but origin master