目录
1、报错:fatal: Not a valid object name: ‘master’.
2、报错:error: remote origin already exists.
3、报错:warning: in the working copy of 'xxx', LF will be replaced by CRLF the next
1、报错:fatal: Not a valid object name: ‘master’.
原因是没有提交一个对象,要先 commit 之后才会真正建立 master 分支,此时才可以建立其它分支。
2、报错:error: remote origin already exists.
如果是 clone 的别人的仓库,然后想将此项目推送到自己的仓库里去,会遇到如下问题:
error: remote origin already exists.——表示远程仓库已存在。
解决问题的步骤:
- 删除原来关联的远程库:git remote rm origin
- 关联自己的仓库:git remote add origin https://gitee.com/xxxxxx.git
- 最后推送到自己的仓库:git push origin master
(1)、git 远程仓库操作相关
git remote -v // 查看本地已经关联的远程仓库
git remote rm name // # 删除远程仓库
git remote rename old_name new_name // # 修改仓库名
git remote add name 远程仓库地址 // name 为要取的仓库名字 远程仓库地址 为要关联的远程仓库地址
3、报错:warning: in the working copy of 'xxx', LF will be replaced by CRLF the next
这是换行符的问题:
- Dos/Windows平台默认换行符:回车(CR)+换行(LF),即’\r\n’
- Mac/Linux平台默认换行符:换行(LF),即’\n’
企业服务器一般都是Linux系统进行管理,所以会有替换换行符的需求。
解决方法:不同的设置对应的换行符状态是不同的。
- 提交时转换为 LF,检出时转换为 CRLF:一般为 Windows 默认设置。
- 提交检出均不转换:在 Windows 的开发环境下支持这样设置。
- 提交时转换为 LF,检出时不转换:Linux 系统。所有换行符都会进行 CRLF - LF 转换,但操作时不会转换回 CRLF。
提交时转换为 LF,检出时转换为 CRLF:
git config --global core.autocrlf true
提交检出均不转换:
git config --global core.autocrlf false
提交时转换为 LF,检出时不转换:
git config --global core.autocrlf input