我在运行rails服务器时遇到问题而且没有连接到我的localhost。我改变了目录的位置,这似乎解决了问题。
现在虽然我似乎无法git提交该项目。我在命令后得到了错误: git push origin master
fatal: 'origin' 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.
在搜索并尝试了一些人们列出的方法来解决它并且没有一个工作之后我决定只删除存储库。
现在,当我再次尝试发布项目时,我得到了这个:
# On branch master
nothing to commit (working directory clean)
在git init之后 git add。 git commit -m“etc”
答案 0 :(得分:1)
在您的情况下,消息
# On branch master
nothing to commit (working directory clean)
意思是:
git init
).gitignore
除外)添加到INDEX(git add .
)git commit -m "etc"
)现在您没有任何变化,您可以继续攻击您的项目。新的更改将由git(git status
)检测并显示,并可以相同的方式提交到存储库
git add .
(或git add -A .
也添加删除的文件)git commit -m "..."