
git
zhuwei_clark
还行吧
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
GIT常用命令
1. 克隆代码 git clone https://github.com/master-dev.git 2. 查看所有分支 git branch --all # 默认只有master分支,所以会看到如下两个分支 # master[本地主分支] origin/master[远程主分支] # 新克隆下来的代码默认master和origin/master是关联的,也就是他们的代码保持同步...原创 2019-01-19 11:19:27 · 123 阅读 · 0 评论 -
CentOS完全卸载GitLab
1、停止gitlab gitlab-ctl stop 2、卸载gitlab(注意这里写的是gitlab-ce) rpm -e gitlab-ce 3、查看gitlab进程 ps aux | grep gitlab 4、杀掉第一个进程(就是带有好多.............的进程) kill -9 18777 杀掉后,在ps aux | gr...原创 2019-05-20 10:02:54 · 487 阅读 · 0 评论 -
centOS安装gitlab并使用外部nginx且支持https
以下文章内容在后面使用gitlab的时候会比较麻烦,请参考:https://blog.youkuaiyun.com/zhuwei_clark/article/details/90812175进行配置 安装gitlab yum -y install policycoreutils openssh-server openssh-clients postfix wget https://mirrors.t...原创 2019-05-22 15:58:25 · 2681 阅读 · 0 评论 -
gitlab生成证书支持HTTPS方式
我前面写过一遍类似的文章https://blog.youkuaiyun.com/zhuwei_clark/article/details/90445601 但是这种方式设置之后再使用的过程中会遇到一些问题,所以重新纠正下,安装过程没什么变化。 yum -y install policycoreutils openssh-server openssh-clients postfix wget...原创 2019-06-04 20:02:11 · 5444 阅读 · 0 评论 -
git submodule说明
最近工作比较忙,没有什么时间写博客,把我最近整理的一份公司文档的经验发下 使用: git clone git@git.dev.tencent.com:clark_zhu/wecode_course.git 初始化: git submodule init 初始化 git submodule update clone到本地 或者直接执行: ...原创 2019-09-23 21:01:31 · 504 阅读 · 0 评论