随笔分类 -  git

摘要:今天给运营那边配置gitlab 的文档项目,顺便写下来,下次不用重复教了 系统环境windows+gitlab 1.win+R键打开 windows 运行窗口,输入cmd 打开命令窗口,输入以下命令 ssh-keygen -t rsa -C "youremail@example.com" 上面是生成 阅读全文
posted @ 2021-10-25 16:40 KenChung 阅读(116) 评论(0) 推荐(0)
摘要:最近在学习gitlab 并改善公司的代码托管和发布流程 安装详细教程可以参考官网:https://about.gitlab.com/install/ 一、安装与配置 以下是我自己的安装流程 #安装依赖 yum install -y curl policycoreutils-python openss 阅读全文
posted @ 2020-02-19 16:27 KenChung 阅读(402) 评论(0) 推荐(0)
摘要:在执行 git add .时 报以上错误 原因: 看情况应该是不同系统对换行的识别不到位导致的 就常识来说文件是在windows下生成的所以换行和 linux 确实不同可能是因为这个导致的 解决: git config --global core.autocrlf false 阅读全文
posted @ 2020-01-21 10:52 KenChung 阅读(160) 评论(0) 推荐(0)