解决sourcetree一直检查源问题

1.新手使用SourceTree 一定要装git客户端才行,不然克隆远程url会一直提示 “这是一个无效的源路径/URL”
解决办法:工具 -选项-git, 启用git 就可以了。
2.解决办法:运行git命令行;敲如下命令

git config --global user.email "[email protected]"   
git config --global user.name "Your Name"

你可能感兴趣的:(版本控制)