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后面的部分执行,执行完毕以后,再拉代码就好了。
标签:exception,git,xxx,add,xx,报错,directory From: https://www.cnblogs.com/longkui-site/p/18464929