
git
文章平均质量分 58
luckySnow-julyo
每天坚持学习,提升自身实力,欢迎大家和我交流️
展开
-
CentOS7安装git
CentOS7安装git,刚开始使用yum安装git,发现安装的版本默认是1.8.3.1,如果需要安装git最新版本,需下载git安装包。通过源码包安装需要下载依赖、解压、编译安装。Git是一款免费、开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目。Git是一个开源的分布式版本控制系统,可以有效、高速的处理从很小到非常大的项目版本管理。Git 是 Linus Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。原创 2022-12-23 12:30:41 · 12564 阅读 · 0 评论 -
Git 使用中显示“Another git process seems to be running in this repository...”问题解决
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 m原创 2022-06-14 17:10:12 · 2303 阅读 · 1 评论 -
git cherry pick的使用教程
对于多分支的代码库,往往需要切换不同分支。那么往往需要用到以下两个操作:git merge (合并分支所有commit)git cherry-pick (有选择的合并其他分支的commit),1.合并一个commit指定commit用于其他分支。命令:git cherry-pick 2.合并多个commit#合并a和b,尖括号内为a和b两次commit对应的hash值git cherry-pick 2.合并多个commi原创 2022-05-24 18:29:46 · 901 阅读 · 0 评论 -
IDEA提交失败,提示:OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
项目场景:IDEA提交失败,提示:OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443问题1及解决方案:1、git pull 代码报错,可以先访问一下git项目,再git pull试试,或者 git --config --unset https.proxy,如果是http,则把https换成http即可![在这里插入图片描述](https://img-blog.csdnimg.cn/4fdf74e8a211原创 2021-08-26 10:57:45 · 957 阅读 · 0 评论