git
996612714
这个作者很懒,什么都没留下…
展开
-
Git生成 SSH 公钥
1.生成ssh公钥ssh-keygen -t rsa -C "xxxxx@xxxxx.com"1.三次回车即可生成 ssh key2.引号中的为码云注册的邮箱3.Windows中使用ssh-keygen:桌面右键选择GUI Bash Here查看生成的Public Keycat ~/.ssh/id_rsa.pub2.添加用户SSH Key 进入码云设置页面—》SS...原创 2018-03-30 16:30:43 · 314 阅读 · 0 评论 -
彻底卸载Gitlab
彻底卸载Gitlab1、停止gitlabgitlab-ctl stop2、卸载gitlabrpm -e gitlab-ce(如果是企业版则为gitlab-ee)3、查看gitlab相关进程ps aux | grep gitlab4、杀掉第一个进程kill -9 153535、查找并删除所有包含gitlab的文件find / -name gitlab | xargs rm...原创 2019-05-31 22:03:58 · 2289 阅读 · 1 评论 -
Linux安装Gitlab(CentOS7)
CentOS7安装Gitlab1、安装和配置必要的依赖项sudo yum install -y curl policycoreutils-python openssh-serversudo systemctl enable sshdsudo systemctl start sshdsudo firewall-cmd --permanent --add-service=httpsudo ...原创 2019-05-31 23:57:15 · 155 阅读 · 0 评论