0

我在运行 rails 服务器时遇到问题,它没有连接到我的本地主机。我更改了目录的位置,这似乎解决了问题。

现在虽然我似乎无法 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 "等"

4

1 回答 1

1

在您的情况下,消息

# On branch master
nothing to commit (working directory clean)

方法:

  • git init您在当前目录 ( )中创建了一个全新的 git 存储库
  • 您将所有文件(除了 中的文件.gitignore)添加到 INDEX ( git add .)
  • 您已提交添加到 INDEX ( git commit -m "etc")的所有文件

现在您没有任何平移更改,您可以继续修改您的项目。新的更改将被 git ( git status) 检测和显示,并且可以以相同的方式提交到存储库

  • git add .(或git add -A .添加已删除的文件)
  • git commit -m "..."
于 2013-04-17T10:50:40.147 回答