git 问题汇总(踩坑记)

目录

1、报错:fatal: Not a valid object name: ‘master’.

2、报错:error: remote origin already exists.

(1)、git 远程仓库操作相关

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值