git报错合集

文章目录

      • git报错合集
        • 1. clone代码时报错:fatal: unable to access 'https://github.com/xxxxxx.git/': Error in the HTTP2 framing layer,解决:
        • 2. (不完善)git status查看时报modified: Zeus (untracked content)
        • 3.Merge made by the 'ort' strategy
        • 4. fatal: detected dubious ownership in repository at 'D:/code/practice'
        • 4. awk : 无法将“awk”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。

git报错合集

1. clone代码时报错:fatal: unable to access ‘https://github.com/xxxxxx.git/’: Error in the HTTP2 framing layer,解决:
 git config --global --unset http.proxy 
git config --global --unset https.proxy
2. (不完善)git status查看时报modified: Zeus (untracked content)

git报错合集_第1张图片
不能add,也不能checkout,一直束手无策(之前好像用另一种方法解决了,但是忘记是啥了)。解决:

1:ll -a:进入Zenud文件夹下执行,查看Zenud文件夹下是否存在.git文件夹,一般情况下应该是存在,删除.git文件夹。网上说,是因为这个文件夹的存在,导致冲突所致。
rm -r .git
 // (我没走下方的命令,status查看已经没了Zenus)
2:git add Zenud: 重新add
3:git commit Zenud-m "***"
4:git push 

原文章:https://blog.csdn.net/u010483897/article/details/87799685

3.Merge made by the ‘ort’ strategy

(拒绝合并不相关的历史)

git pull origin master --allow-unrelated-histories
4. fatal: detected dubious ownership in repository at ‘D:/code/practice’

fatal: detected dubious ownership in repository at ‘D:/code/practice’
‘D:/code/practice’ is owned by:
‘S-1-5-21-4268349429-495329369-1196431027-1002’
but the current user is:
‘S-1-5-21-558453657-3296276975-2127903142-500’
To add an exception for this directory, call:
git config --global --add safe.directory ‘D:/code/practice’

电脑出了问题,重装之后用户名不一样,百度之后发现最简单的方法是直接执行最后一行显示的命令即可

 git config --global --add safe.directory 'D:/code/practice'
4. awk : 无法将“awk”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。

用git查看一段时间内自己的代码改动数量,在vscode的终端(terminal)中运行了下方命令之后报了上方的错误

git log --since =2023-03-06 --until==2023-03-10 --author="shengtong" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }'

原因是该命令需要在git bash面板中运行,而非terminal中。正确运行结果如下:
在这里插入图片描述

你可能感兴趣的:(git,git,node.js)