aicommit2 是一个自动生成 commit 信息的 CLI 工具,支持多家供应商平台的 AI 模型,我使用的是 DeepSeek 的模型,以此为示例演示使用。 安装: aicommit2 工具依赖 Node.js ,支持的最低版本是V […]
标签: Git
修改代码保存后发现在错误分支上?使用git stash解决
代码修改完,准备 commit 发现分支错了,而这时候因为有修改未 commit 不能切换到正确的分支,会提示下面的错误信息: Please commit your changes or stash them before you swit […]
git中将已跟踪的文件添加到.gitignore
环境配置文件.env之前被push到远端仓库了,现需要将其从代码库中删除并清除跟踪。 备注:操作前请先备份有用的文件内容。 添加 .gitignore 文件,编辑内容: .env 执行操作: git pull git rm -r –cac […]
从GitHub仓库git clone时直接使用代理加速
从github上克隆一个大项目的时候,如果不适用代理,可能只有几十K的速度,非常绝望,可以在git clone时直接使用代理: git clone -c https.proxy=”127.0.0.1:10809″ https://githu […]
git错误Your configuration specifies to merge with the ref xxxx
在分支 master 执行 git pull 的时候,提示错误: Your configuration specifies to merge with the ref ‘refs/heads/release/v20230413.1’ fro […]
github提示:Host key verification failed. fatal: Could not read from remote repository
在使用github仓库拉取代码时,有时候会出现RSA密钥的指纹对不上的情况,执行 git pull 等操作时出现类似以下提示: [root@test1]# git pull @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ […]
git 恢复本地修改过的文件
修改了很多文件,还没有 push 到远程仓库,这时候想恢复几个文件或目录的修改。 只是修改了文件 还没有 git add git checkout — file.txt # file.txt为文件名,也可以是目录 修改了文件,并提交到暂存 […]
github报错”You’re using an RSA key with SHA-1, which is no longer allowed…“
今天从 github 拉取私有项目时,出现报错,内容如下: ERROR: You’re using an RSA key with SHA-1, which is no longer allowed. Please use a newer […]