版本管理一些记录

这篇博客记录了在使用Git过程中遇到的一些问题,包括untracked files提示、提交失败、远程仓库访问权限错误、分支同步冲突等,并给出了相应的解决办法,如设置忽略文件、更新远程仓库URL、使用强制推送等。
摘要由CSDN通过智能技术生成

版本管理一些记录

1. git
  • nothing added to commit but untracked files present
    或者 gid add … that will be commit

设置要忽略的文件和文件夹,然后git add . 提交将本地项目上传到缓存区
参考1

  • git add commit push

  • fatal: ‘origin’ does not appear to be a git repository
    fatal: Could not read from remote repository.
    Please make sure you have the correct access rights
    and the repository exists.
    参考1

git checkout -b master 如果远程仓库存在,则切换到该分支,不存在则创建

  • 提交不了 nothing to commit,working tree clean
    参考1

已经提交过了,修改文件 ,状态变化后,再次 commit成功

  • fatal: ‘origin’ does not appear to be a git repository
    git remote add origin 仓库地址 .git结尾
    git remote show origin
  • $ git push origin dev
    fatal: unable to update url base from redirection:
    asked for: http://192.168.3.140/info/refs?service=git-receive-pack
    redirect: http://192.168.3.140/users/sign_in

git remote set-url origin http://192.168.3.140/xbgg/flycms.git

  • ! [rejected] dev-> dev(fetch first)
    error: failed to push some refs to
    参考1

git pull --rebase origin dev
线上线下文件不一致

  • ! [rejected] dev -> dev (non-fast-forward)
    error: failed to push some refs to

参考1

  • Updates were rejected because a pushed branch tip is behind its remote
    参考1

1.使用强制push的方法:

git push -u origin master -f
成功

  • client_loop: send disconnect: Connection reset by peeriB/s
    fatal: the remote end hung up unexpectedly
    fatal: early EOF
    fatal: index-pack failed
    ——————————————————————————
    git config --global http.postBuffer 157286400
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值