git
斗转星移3
这个作者很懒,什么都没留下…
展开
-
git pull 出错 remote: The project you were looking for could not be found.
git pull 出错原创 2022-04-16 01:36:02 · 1088 阅读 · 1 评论 -
git 切换分支出错 fatal: A branch named ‘分支名‘ already exists.
切换分支出错git checkout master 先切换到主分支git branch -d 需要删除的分支名git checkout -b 分支名 origin/分支名原创 2022-04-03 22:10:12 · 23192 阅读 · 4 评论 -
git 推荐书籍
推荐:《Pro Git》一直苦于不知道git怎么去入门,以前只知道使用图形界面,对命令行一无所知,后来看《Pro Git》这本书感觉对入门这很友好,是Git “入门到放弃” 不错的选择。下载地址:https://git-scm.com/book/zh/v2...原创 2021-08-17 23:12:50 · 1020 阅读 · 0 评论 -
gitlab搭建遇到的问题 [execute] fail: logrotate: runsv not running /opt/gitlab/bin/gitlab-ctl start
(up to date) * execute[/opt/gitlab/bin/gitlab-ctl start logrotate] action run[execute] fail: logrotate: runsv not running================================================================================ Error executing action `run` on resour...原创 2021-07-10 16:31:50 · 2361 阅读 · 0 评论 -
Ubuntu GitLab仓库服务器搭建 No command ‘deb‘ found, did you mean(转载)
首先安装必须的一些服务,有些版本的Ubuntu已经默认安装了curl openssh-server,根据你的版本,可能不用那个安装这两个了。sudo apt-get updatesudo apt-get install -y curl openssh-server ca-certificatessudo apt-get install -y postfix使用左右键和回车键选择确定、取消,弹出列表选项的时候,选择 Internet Site由于国外的下载速度过慢,所以配置清华大学镜像转载 2021-07-03 10:07:06 · 5393 阅读 · 0 评论 -
git commit -a 加不加 -a 有什么区别(转载)
git commit -a加不加 -a ,有什么区别,好像都没区别,使用命令调出帮助文档,可以得到答案git commit --help可以看到:OPTIONS -a, --all Tell the command to automatically stage files that have been modified and deleted, but new files you have not told Git about are not ..转载 2021-07-03 10:11:11 · 7264 阅读 · 4 评论 -
git 错误 ssh_exchange_identification: Connection closed by remote hostfatal Connection reset by peer
$ git push origin masterssh_exchange_identification: Connection closed by remote hostfatal: Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists.使用以下命令后sudo /etc/init.d/ssh restart或者转载 2021-06-24 19:47:32 · 5003 阅读 · 0 评论 -
查询github.com 的ip地址
在以下网址可以查询github.com 的ip地址▷ GitHub.com : GitHub: Where the world builds software · GitHub (ipaddress.com)https://github.com.ipaddress.com/#ipinfo原创 2021-05-20 09:20:17 · 31109 阅读 · 0 评论 -
git fatal: unable to access ‘https://admin@t.git/‘: SSL certificate problem: se(转载)
fatal: unable to access ‘https://gitee.com/gzllkm/GZL.git/’: SSL certificate problem: unable to get local issuer certificate如果连接git是报错unable to access ‘https://****’: SSL certificate problem: Invalid 因为有些服务器是https是自签名的. 所以在命令行上运行以下命令 将安全验证关掉 git confi转载 2020-11-17 22:53:31 · 192 阅读 · 0 评论 -
几个Git仓库开源软件的比较
https://www.cnblogs.com/glzgc/p/10570355.htmlhttp://softlab.sdut.edu.cn/blog/subaochen/2016/01/github_like_softwares/https://www.zhihu.com/question/28485788?sort=created转载 2020-11-13 14:28:40 · 271 阅读 · 0 评论 -
git 合并冲突表示法 <<<<<<<,=======,>>>>>>>
当git合并产生合并冲突时,该部分会以<<<<<<<,=======和>>>>>>>表示。在=======之前的部分是当前分支这边的情况,在=======之后的部分是对方分支的情况。本文摘抄自:https://www.jianshu.com/p/58a166f24c81...原创 2020-07-31 08:35:53 · 2159 阅读 · 0 评论