Windows 安装 Git 到 D 盘后,我遇到的问题:
1. PowerShell 终端输入 git,出现错误
提示找不到此命令 git。
解决方法:系统环境变量 Path 增加 Git的 bin 目录,我的是 D:\Program Files\Git\bin。
安装Git后,系统环境变量 Path 已经存在 D:\Program Files\Git\cmd,此目录不行。
2. 使用 Git 下载 Dify 时出现错误
fatal: unable to access ‘https://github.com/langgenius/dify.git/‘: schannel: failed to receive handshake, SSL/TLS connection failed
解决方法:
git config –global –unset credential.helper
git config –system –unset credential.helper







