青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

2020年10月15日

5_搭建Gitlab服务器 基于CentOS_8

摘要: 1.卸载防火墙、关闭Selinux ]# yum -y remove firewalld ]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config 2.添加gitlab用户 ]# useradd -s /sbin/n 阅读全文

posted @ 2020-10-15 10:55 芦苇の 阅读(103) 评论(0) 推荐(0)

4. 服务器上的Git

摘要: 4.1 搭建Git服务器 git1 ]# git config --global user.name "user1" ]# git config --global user.email user1@example.com ]# groupadd git ]# useradd git -g git ] 阅读全文

posted @ 2020-10-15 10:54 芦苇の 阅读(65) 评论(0) 推荐(0)

3. Git分支

摘要: 3.1 分支的创建与合并 # 创建分支 git]# git branch br1 # 切换到分支 git]# git checkout br1 Switched to branch 'br1' # 查看 git]# git branch * br1 master # git checkout -b 阅读全文

posted @ 2020-10-15 10:53 芦苇の 阅读(88) 评论(0) 推荐(0)

2. Git基础命令

摘要: 2.1 初始化Git仓库 创建的git目录下 git]# git init # 创建文件并提交 git]# echo 111 > 1.txt git]# git status -s ?? 1.txt git]# git add 1.txt git]# git status -s A 1.txt gi 阅读全文

posted @ 2020-10-15 10:52 芦苇の 阅读(111) 评论(0) 推荐(0)

1.Git基础配置

摘要: 1.Git基础配置 1.1 Git 的三种状态 已提交(committed)、已修改(modified) 和 已暂存(staged)。 1.2 Git的工作流程 基本的 Git 工作流程如下: 在工作区中修改文件; 将你想要下次提交的更改选择性地暂存,这样只会将更改的部分添加到暂存区; 提交更新,找 阅读全文

posted @ 2020-10-15 10:51 芦苇の 阅读(80) 评论(0) 推荐(0)