git fatal: detected dubious ownership in repository 解决方法

前言

  • 最近windows 10 更新后,发现非常卡顿,鼠标右键,偶尔要等10秒才能有反应,无法系统还原,但是可以通过装机软件,进行重置,类似于系统重新安装

  • 重置 windows 10后,因为更新了用户名,造成之前的所以 git 仓库,都无法直接拉取代码

git 操作错误提示

admin@DESKTOP-TNI5ROV MINGW64 /d/git/rt-thread/rt-thread_pm2
$ git log
fatal: detected dubious ownership in repository at 'D:/git/rt-thread/rt-thread_pm2'
'D:/git/rt-thread/rt-thread_pm2' is owned by:
        'S-1-5-21-1045045257-1974506225-3199486363-500'
but the current user is:
        'S-1-5-21-1045045257-1974506225-3199486363-1001'
To add an exception for this directory, call:

        git config --global --add safe.directory D:/git/rt-thread/rt-thread_pm2

解决方法

  • 临时的解决方法就是按照提示, 在 git bash 中输入git config --global --add safe.directory D:/git/rt-thread/rt-thread_pm2,但是这只能解决当前的 git 仓库,其他的git 仓库,都要这么做,并且 git config -l,会发现一大串的这些操作,看着很不爽

  • 其实这个是git 仓库 用户名问题,如之前是 Administrator,现在改为了 admin,之前的目录所有者需要改为现在的用户,所以解决这种问题的根本方法就是【更改git 仓库文件夹的所有者】,改为当前的windows 登录的用户

操作步骤

  • 选择 git 仓库的文件夹,如果这个文件夹下全是git 仓库,可以选择整个文件夹,鼠标右键【属性】 【安全】【高级】
    git fatal: detected dubious ownership in repository 解决方法_第1张图片

  • 所有者与当前的windows登录的账号不一样,【更改】

git fatal: detected dubious ownership in repository 解决方法_第2张图片

  • 通过查找,找到当前登录的账号

git fatal: detected dubious ownership in repository 解决方法_第3张图片

  • 选择查找

git fatal: detected dubious ownership in repository 解决方法_第4张图片

  • 选择当前的账号

git fatal: detected dubious ownership in repository 解决方法_第5张图片

  • 选择当前账号后,点击【确定】

git fatal: detected dubious ownership in repository 解决方法_第6张图片

  • 点击【确定】后,目录文件较多,会操作一会

git fatal: detected dubious ownership in repository 解决方法_第7张图片

  • 子文件夹等一起更改

git fatal: detected dubious ownership in repository 解决方法_第8张图片

更改后的效果

  • 更改 git 仓库 文件夹的所有者为当前windows 账号,git 的操作正常了

git fatal: detected dubious ownership in repository 解决方法_第9张图片

小结

  • 这个操作还是有点耗时,不过,就不用重新拉取代码了,因为拉取代码,也是比较的耗时的

  • 不太清楚 git 为何设置了这个提示,不过更改文件夹用户,这个在 windows上,我是第一次操作

你可能感兴趣的:(技术杂谈,git,github)