初学git报错处理 | 从IDEA远程拉取、创建分支中“clone failed”“couldn‘t checkout”
1.远程拉取“clone failed”
我新建了一个文件夹,结果clone failed。后来发现,原来是在这个文件夹里没有建立本地仓库。
打开文件夹,右键git bush,然后键入git init,就可以成果clone啦!
2.新建分支“couldn't checkout”
报错:detected dubious ownership in repository at 'E:/JAVA/12306-1128-2' 'E:/JAVA/12306-1128-2' is on a file system that does not record ownership To add an exception for this directory, call: git config --global --add safe.directory E:/JAVA/12306-1128-2
detected dubious ownership
错误是因为 Git 无法验证文件系统的所有权信息,解决方法是使用git config --global --add safe.directory
将该目录标记为安全目录。- 创建新分支的命令是
git checkout -b <branch-name>
。
3.commit
4.