git detected dubious ownership in repository at
时间: 2023-06-27 08:07:18 浏览: 179
cmp scrach,git-repertory 好资源啊
这个错误通常是由于你在将代码推送到远程仓库时,使用了错误的用户名或邮箱地址导致的。
你可以使用以下命令来查看你当前的用户名和邮箱地址:
```
git config user.name
git config user.email
```
如果发现配置信息错误,可以使用以下命令进行修改:
```
git config --global user.name "Your Name"
git config --global user.email "your_email@example.com"
```
记得将 "Your Name" 和 "your_email@example.com" 替换为你自己的用户名和邮箱地址。
如果你已经推送了错误的用户名或邮箱地址到远程仓库,你可以使用以下命令进行修改:
```
git commit --amend --reset-author
git push --force
```
这会重新提交你的最近一次提交,并将作者信息修改为当前配置的用户名和邮箱地址。但是要注意,使用 `--force` 选项可能会导致你的历史提交记录被修改,所以请确保你知道自己在做什么。
阅读全文