【错误记录】Git 使用报错 ( git: ‘switch‘ is not a git command. See ‘git --help‘. )

简介: 【错误记录】Git 使用报错 ( git: ‘switch‘ is not a git command. See ‘git --help‘. )

文章目录

一、报错信息

二、解决方案





一、报错信息


执行


git switch -c feature1


命令 , 创建分支 , 报如下错误 :


D:\Git\git-learning-course>git switch -c feature1
git: 'switch' is not a git command. See 'git --help'.


image.png






二、解决方案


git switch 命令是 2.23 2.232.23 版本中新加入的命令 , 使用


git --version


命令 , 查询当前的版本 , 2.22.0 2.22.02.22.0 版本 ;


image.png

执行


git update-git-for-windows


命令 , 升级当前的 Git 版本 ,

image.png



如果是 2.17 2.172.17 之前的版本, 需要使用 git update 命令 , 升级 Git 软件版本 ;



备选方案 :


到 Git 官方下载页面 https://www.git-scm.com/download/win 中下载最新的版本 , 当前的最新版本是 2.34.1 2.34.12.34.1 版本 ;


直接下载地址是 : https://github.com/git-for-windows/git/releases/download/v2.34.1.windows.1/Git-2.34.1-64-bit.exe


image.png

目录
相关文章
|
2月前
|
存储 开发工具 数据安全/隐私保护
git报错The project you were looking for could not be found 解决方式
git报错The project you were looking for could not be found 解决方式
467 1
|
3月前
|
机器学习/深度学习 Shell 开发工具
Python使用管道执行git命令报错|4-7
Python使用管道执行git命令报错|4-7
|
3月前
|
存储 Shell 开发工具
8-8|windows上Git报错
8-8|windows上Git报错
|
4月前
|
开发工具 git
【Azure App Service】App Service设置访问限制后,使用git clone代码库出现403报错
【Azure App Service】App Service设置访问限制后,使用git clone代码库出现403报错
|
4月前
|
开发工具 Android开发 git
解决Idea报错出现Git is not installed
解决Idea报错出现Git is not installed
913 2
|
4月前
|
网络安全 开发工具 数据安全/隐私保护
Git——报错总结
Git——报错总结
53 1
|
5月前
|
网络安全 开发工具 git
【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效
【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效
1341 1
|
6月前
|
Shell 开发工具 git
git拉去代码报错"Failed to connect to 127.0.0.1 port 31181: Connection refused"
在克隆`https://example.git/`时遇到错误:"fatal: unable to access 'https://example.git/': Failed to connect to 127.0.0.1 port 31181: Connection refused"。原因是Windows上代理设置未正确关闭,影响了Git配置。解决方法是通过git bash运行命令检查并取消代理:`git config --global http.proxy`和`git config --global --unset http.proxy`。
170 1
 git拉去代码报错"Failed to connect to 127.0.0.1 port 31181: Connection refused"
|
5月前
|
网络安全 开发工具 git
使用git克隆仓库报错:Warning: Permanently added‘github.com’ to the .....(ssh )
所以,你可以安全地忽略这个警告,它不会影响到你使用git克隆仓库。如果你已经成功克隆了仓库,那么一切都在正常工作。如果你在克隆过程中遇到其他问题,那可能需要查看具体的错误信息来解决。
145 0
|
7月前
|
缓存 网络安全 开发工具
Git服务器报错:host key for (ip地址) has changed and you have requested strict checking
Git服务器报错:host key for (ip地址) has changed and you have requested strict checking
543 0