git使用过程中报错及解决方法汇总

文章目录

  • 前言
  • 一、报错信息与解决方案
    • 1.git报错1
    • 2.git报错2
    • 3.git报错3
    • 4.git报错4
    • 5.git报错5
    • 5.git报错5
  • 总结


前言

git接触很少,做些最基础的使用。期间陆续发生很多报错信息,在此进行记录


一、报错信息与解决方案

1.git报错1

Pull is not possible because you have unmerged files
There is no tracking information for the current branch.

解决方案1:

git branch --set-upstream-to=origin/远程分支的名字  本地分支的名字

解决方案2:将本地的冲突文件冲掉,在git pull

git reset --hard FETCH_HEAD
git pull

2.git报错2

You are not currently on a branch.

解决方案:

/**
 *可先查看分支情况:git branch
 *1.创建分支
 *2.切换到该分支
 */
git branch temp
git checkout

3.git报错3

error: failed to push some refs to ‘https://github.com/ZJyoung1997/JZShop.git’

解决方案:

/**
 *sit为分支名
 */
git pull --rebase origin sit

4.git报错4

fatal: ‘master’ does not appear to be a git repository
fatal: Could not read from remote repository.

解决方案:

/**
 *sit为分支名
 */
git pull origin sit--allow-unrelated-histories 

5.git报错5

error: Your local changes to the following files would be overwritten by merge

解决方案:

/**
 *注:请先备份本地修改,否则慎用
 *先放弃本地修改,然后在提交一次
 */
git reset --hard
git clean -d -fx
git pull

5.git报错5

报错eslint --fix found some errors. Please fix them and try committing again.


解决方案:
/**
 *使用下面语句提交
 */
git commit --no-verify -m "提交时的注释"

总结

报错不可怕,耐心分析问题,终会解决

你可能感兴趣的:(Git,git)