Git 在我尝试将文件添加到我的存储库时抛出读取链接错误

Git is throwing a readlink error when I try and add files to my repo

大家晚上好, 当我尝试将文件添加到我的 git 存储库时,出现错误。我有 运行 git 初始化。我确实将一个 repo 克隆到文件系统中,然后删除了遥控器。我的目标是我只是想将我服务器的文件添加到 github 上的不同存储库。任何指导将不胜感激。谢谢你的时间。

root@portfolio-test:/# sudo git add .
error: readlink("proc/10/exe"): No such file or directory
error: unable to index file 'proc/10/exe'
fatal: adding files failed

I did clone a repo into the filesystem and then removed the remote

首先,确保您以普通用户的身份克隆了 rpeository 而不是

然后您应该转到 (cd /path/to) 那个存储库文件夹,然后执行:

git remote set-url origin https://url/new/remote/repository
git push

现在,您正在尝试 git 从 / 添加,您系统的根文件夹。
那不行,因为文件太多,包括无法添加的系统文件。

  • 不要以 root 身份工作
  • 在克隆的存储库文件夹中工作,而不是 /。