git报错:unsafe repository(‘D/xxx/xxx/xx’) To add an exception for this directory…

原文链接:https://www.longkui.site/program/other/gitunsafe-repository/5119/

0.背景
电脑重装系统以后,IDEA重新跑起来,然后git拉代码,报错:
unsafe repository(‘D/xxx/xxx/xx’) To add an exception for this directory, call: git config –global –add safe.directory ‘D/xxx/xxx/xx’

1.解决方案
解决方案比较简单,提示都给你你了,说执行 call后面的代码,就是 git config –global –add safe.directory ‘D/xxx/xxx/xx’

注意,复制这段代码,到项目目录中去,按住shift+右键,打开powershell窗口,然后复制你报错代码 call后面的部分执行,执行完毕以后,再拉代码就好了。

你可能感兴趣的:(git,intellij-idea,github)