git操作常见错误

转载自:https://blog.csdn.net/dengjianqiang2011/article/details/9260435

2、
如果输入$ git remote add origin [email protected]:djqiang(github帐号名)/gitdemo(项目名).git

提示出错信息:fatal: remote origin already exists.

解决办法如下:

1、先输入$ git remote rm origin

2、再输入$ git remote add origin [email protected]:djqiang/gitdemo.git 就不会报错了!

3、如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section 'remote.origin'. 我们需要修改gitconfig文件的内容

4、找到你的github的安装路径,我的是C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc

5、找到一个名为gitconfig的文件,打开它把里面的[remote "origin"]那一行删掉就好了!

3、
Git 提示fatal: remote origin already exists 错误解决办法

最后找到解决办法如下:
1、先删除远程 Git 仓库

$ git remote rm origin

2、再添加远程 Git 仓库

$ git remote add origin [email protected]:FBing/java-code-generator

如果执行 git remote rm origin 报错的话,我们可以手动修改gitconfig文件的内容

$ vi .git/config

git操作常见错误_第1张图片
这里写图片描述

把 [remote “origin”] 那一行删掉就好了。

4、git push错误failed to push some refs to
原因:在github上创建的仓某个库中添加readme文件或者其他什么文件,但是没有对本地库进行同步。这个时候当你再次有commit想要从本地库提交到远程的github库中时就会出现push失败的问题。
解决办法:
这个问题是因为远程库与本地库不一致造成的,那么我们把远程库同步到本地库就可以了。 使用指令git pull -- rebase origin master
这条指令的意思是把远程库中的更新合并到本地库中,–rebase的作用是取消掉本地库中刚刚的commit,并把他们接到更新后的版本库之中。
5、更新代码冲突
Your local changes to the following files would be overwritten by merge: ... Please, commit your changes or stash them before you can merge
意思是:更新代码的时候出现了代码冲突。 借鉴自:https://blog.csdn.net/misakaqunianxiatian/article/details/51103734
解决办法:1、如果希望保留自己所做的改动,然后更新最新的代码,再把自己改的代码提交。可以这样做
git stash --》 git pull origin master --》 git stash pop
如此一来,服务器上的代码更新到了本地,而且你本地修改的代码也没有被覆盖,之后使用add,commit,push 命令即可更新本地代码到服务器了。
2、如果希望服务器上的代码覆盖自己改动过的代码:
git reset --hard --》 git pull
5、fatal: Unable to create ‘D:/LearnGit/.git/index.lock’: File exists.
错误信息为: Another git process seems to be running in this repository, e.g.an editor opened by ‘git commit’. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.
解决办法: https://blog.csdn.net/lihchweb/article/details/74352054
大意如下: 在D盘LearnGit/.git里创建index.lock失败:文件已存在。git的进程已经在一个编辑器中被打开。请确保所有的进程都结束,然后再次尝试。如果仍然失败,可能是上个运行中的git崩溃,手动移除这个文件。
翻了下.git里的文件,里面有个index.lock文件。删除之后再继续git操作就没问题了。
后来了解了下,应该是windows对进程的管理有个上锁机制,正常情况下,会上锁,进程结束,然后解锁进程。但是由于我强制关闭了运行中的git,导致git崩溃,已经上锁的index.lock没有来得及解锁而仍然存在。当我再用git add的时候,git发现已经存在了index.lock这个文件,导致报错。
正常情况下 .git 是隐藏文件夹,需要手动的设置显示隐藏文件方可看到:
window下打开‘我的电脑’,在工具/文件夹选项/查看/里 勾选 显示隐藏的文件、文件夹或驱动器。然后进入文件夹删除index.lock文件。
或者你可以这样:命令行里 cd 到该项目的 .git 这个目录下, 输入命令: rm index.lock 即可删除。
6、 git add . --> git commit -m "xxx" --> git push 出现报错如下:
error: failed to push some refs to 'http://192.168.10.43/root/creditPro.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
出错原因:发现是由于远程仓库中代码版本与本地不一致冲突导致的。
解决办法:git pull 然后 git push
7、有时候git pull看不到代码更新,
原因:也许是没有切换本地库到远程库的原因
解决办法:先git branch查看当前代码所在的分支(是哪个本地分支还是远程哪个分支) ,然后再git checkout branch branch就是分支的名字,最后再执行git pull
8、#[git commit 报 "Changes not staged for commit:"
git commit 前没有 git add .

你可能感兴趣的:(git操作常见错误)