版本控制是指对软件开发过程中各种程序代码、配置文件及说明文档等文件变更的管理,是软件配置管理的核心思想之一。
版本控制最主要的功能就是追踪文件的变更。它将什么时候、什么人更改了文件的什么内容等信息忠实地了记录下来。每一次文件的改变,文件的版本号都将增加。除了记录版本变更外,版本控制的另一个重要功能是并行开发。软件开发往往是多人协同作业,版本控制可以有效地解决版本的同步以及不同开发者之间的开发通信问题,提高协同开发的效率。并行开发中最常见的不同版本软件的错误(Bug)修正问题也可以通过版本控制中分支与合并的方法有效地解决。
具体来说,在每一项开发任务中,都需要首先设定开发基线,确定各个配置项的开发初始版本,在开发过程中,开发人员基于开发基线的版本,开发出所需的目标版本。当发生需求变更时,通过对变更的评估,确定变更的影响范围,对被影响的配置项的版本进行修改,根据变更的性质使配置项的版本树继续延伸或产生新的分支,形成新的目标版本,而对于不受变更影响的配置项则不应发产生变动。同时,应能够将变更所产生的对版本的影响进行记录和跟踪。必要时还可以回退到以前的版本。例如当开发需求或需求变更被取消时,就需要有能力将版本回退到开发基线版本。在曾经出现过的季度升级包拆包和重新组包的过程中,其实就是将部分配置项的版本回退到开发基线,将对应不同需求的不同分支重新组合归并,形成新的升级包版本。
版本控制是软件配置管理的核心功能。所有置于配置库中的元素都应自动予以版本的标识,并保证版本命名的唯一性。版本在生成过程中,自动依照设定的使用模型自动分支、演进。除了系统自动记录的版本信息以外,为了配合软件开发流程的各个阶段。还需要定义、收集一些元数据来记录版本的辅助信息和规范开发流程,并为今后对软件过程的度量做好准备。当然如果选用的工具支持,这些辅助数据将能直接统计出过程数据,从而方便软件过程改进活动的进行。对于配置库中的各个基线控制项,应该根据其基线的位置和状态来设置相应的访问权限。一般来说,对于基线版本之前的各个版本都应处于被锁定的状态,如需要对它们进行变更,则应按照变更控制的流程来进行操作。
常用的版本控制工具:
//配置yum源
[root@zml ~]# cd /etc/yum.repos.d/
[root@zml yum.repos.d]# ls
CentOS7-Base-163.repo epel-testing.repo webtatic-archive.repo webtatic-testing.repo
epel.repo redhat.repo webtatic.repo
//安装git
[root@zml yum.repos.d]# yum -y install git
//安装依赖包
[root@zml yum.repos.d]# yum -y install curl openssh-server openssh-clients postfix cronie policycoreutils-python
//启动postfix服务并设置开机自启(默认是开启的,端口是25)
[root@zml ~]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 *:22 *:*
LISTEN 0 100 127.0.0.1:25 *:*
LISTEN 0 5 127.0.0.1:25151 *:*
LISTEN 0 5 *:873 *:*
LISTEN 0 128 :::80 :::*
LISTEN 0 128 :::22 :::*
LISTEN 0 100 ::1:25 :::*
LISTEN 0 128 :::443 :::*
LISTEN 0 5 :::873 :::*
[root@zml ~]# systemctl status postfix
● postfix.service - Postfix Mail Transport Agent
Loaded: loaded (/usr/lib/systemd/system/postfix.service; enabled; vendor preset: disabled)
Active: active (running) since 三 2019-03-06 14:12:33 CST; 1min 44s ago
Process: 1882 ExecStop=/usr/sbin/postfix stop (code=exited, status=0/SUCCESS)
Process: 1896 ExecStart=/usr/sbin/postfix start (code=exited, status=0/SUCCESS)
Process: 1894 ExecStartPre=/usr/libexec/postfix/chroot-update (code=exited, status=0/SUCCESS)
Process: 1891 ExecStartPre=/usr/libexec/postfix/aliasesdb (code=exited, status=0/SUCCESS)
Main PID: 1968 (master)
CGroup: /system.slice/postfix.service
├─1968 /usr/libexec/postfix/master -w
├─1969 pickup -l -t unix -u
└─1970 qmgr -l -t unix -u
3月 06 14:12:32 zml systemd[1]: Starting Postfix Mail Transport Agent...
3月 06 14:12:33 zml postfix/master[1968]: daemon started -- version 2.10.1, configuration /etc/postfix
3月 06 14:12:33 zml systemd[1]: Started Postfix Mail Transport Agent.
//下载gitlab的rpm包并安装//安装gitlab
[root@zml ~]# cd /usr/src/
[root@zml src]#wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-11.2.1-ce.0.el7.x86_64.rpm
[root@zml src]# ls
apr-1.6.3 gitlab-ce-11.2.1-ce.0.el7.x86_64.rpm nginx-1.14.2
apr-1.6.3.tar.bz2 httpd-2.4.34 nginx-1.14.2.tar.gz
apr-util-1.6.1 httpd-2.4.34.tar.bz2 php-7.2.8
apr-util-1.6.1.tar.bz2 kernels php-7.2.8.tar.xz
debug mysql-5.7.23-linux-glibc2.12-x86_64.tar.gz
[root@zml src]#rpm -ivh gitlab-ce-11.2.1-ce.0.el7.x86_64.rpm
警告:gitlab-ce-11.2.1-ce.0.el7.x86_64.rpm: 头V4 RSA/SHA1 Signature, 密钥 ID f27eab47: NOKEY
准备中... ################################# [100%]
正在升级/安装...
1:gitlab-ce-11.2.1-ce.0.el7 ################################# [100%]
It looks like GitLab has not been configured yet; skipping the upgrade script.
*. *.
*** ***
***** *****
.****** *******
******** ********
,,,,,,,,,***********,,,,,,,,,
,,,,,,,,,,,*********,,,,,,,,,,,
.,,,,,,,,,,,*******,,,,,,,,,,,,
,,,,,,,,,*****,,,,,,,,,.
,,,,,,,****,,,,,,
.,,,***,,,,
,*,.
_______ __ __ __
/ ____(_) /_/ / ____ _/ /_
/ / __/ / __/ / / __ `/ __ \
/ /_/ / / /_/ /___/ /_/ / /_/ /
\____/_/\__/_____/\__,_/_.___/
Thank you for installing GitLab!
GitLab was unable to detect a valid hostname for your instance.
Please configure a URL for your GitLab instance by setting `external_url`
configuration in /etc/gitlab/gitlab.rb file.
Then, you can start your GitLab instance by running the following command:
sudo gitlab-ctl reconfigure
For a comprehensive list of configuration options please see the Omnibus GitLab readme
https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md
//修改配置文件
[root@zml ~]# vim /etc/gitlab/gitlab.rb
##! https://docs.gitlab.com/omnibus/settings/configuration.html#configuring-the-external-url-for-gitlab
external_url 'http://gitlab.zml.com' //将此处设为gitlab的服务器ip地址亦或域名
## Roles for multi-instance GitLab
//重载配置文件并重启gitlab
[root@zml ~]# gitlab-ctl reconfigure
[root@zml ~]# gitlab-ctl restart
ok: run: alertmanager: (pid 5039) 0s
ok: run: gitaly: (pid 5050) 0s
ok: run: gitlab-monitor: (pid 5061) 0s
ok: run: gitlab-workhorse: (pid 5068) 1s
ok: run: logrotate: (pid 5077) 0s
ok: run: nginx: (pid 5083) 1s
ok: run: node-exporter: (pid 5086) 1s
ok: run: postgres-exporter: (pid 5091) 0s
ok: run: postgresql: (pid 5102) 0s
ok: run: prometheus: (pid 5106) 0s
ok: run: redis: (pid 5117) 0s
ok: run: redis-exporter: (pid 5127) 0s
ok: run: sidekiq: (pid 5195) 0s
ok: run: unicorn: (pid 5294) 0s
//查看当前的gitlab版本
[root@zml ~]# head -1 /opt/gitlab/version-manifest.txt
gitlab-ce 11.2.1
//设置管理员密码(这里的用户和密码是用来登录网页的)
[root@zml ~]# gitlab-rails console production
-------------------------------------------------------------------------------------
GitLab: 11.2.1 (2d6c1c6)
GitLab Shell: 8.1.1
postgresql: 9.6.8
-------------------------------------------------------------------------------------
Loading production environment (Rails 4.2.10)
irb(main):001:0> user = User.where(id: 1).first //id为1的是超级管理员
=> #
irb(main):002:0> user.password = 'zhang123!' //密码必须至少8个字符
=> "zhang123!"
irb(main):003:0> user.save!
Enqueued ActionMailer::DeliveryJob (Job ID: bccc799a-dae2-4b5c-97cf-441384da8c76) to Sidekiq(mailers) with arguments: "DeviseMailer", "password_change", "deliver_now", gid://gitlab/User/1
=> true
irb(main):004:0> exit
在浏览器中使用gitlab服务器的ip访问,页面如下图所示
gitlab常用管理操作
由于项目的内容是空的,所以要完成下面的步骤(在另外一台主机上做)
//安装yum源
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ls
CentOS7-Base-163.repo epel.repo epel-testing.repo redhat.repo
//安装git
[root@localhost yum.repos.d]# yum -y install git
//Git全局设置
[root@localhost ~]# git config --global user.name "zml"
[root@localhost ~]# git config --global user.email "[email protected]"
//修改hosts的文件,否则无法克隆
[root@localhost ~]# vim /etc/hosts
[root@localhost ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.26.128 gitlab.zml.com
//创建一个新的存储库
[root@localhost ~]# git clone http://gitlab.zml.com/root/play.git
正克隆到 'play'...
Username for 'http://gitlab.zml.com': zml
Password for 'http://[email protected]':
fatal: unable to access 'http://gitlab.zml.com/root/play.git/': The requested URL returned error: 403
[root@localhost ~]# git clone http://gitlab.zml.com/root/play.git
正克隆到 'play'...
Username for 'http://gitlab.zml.com': root
Password for 'http://[email protected]':
fatal: Authentication failed for 'http://gitlab.zml.com/root/play.git/'
[root@localhost ~]# git clone http://gitlab.zml.com/root/play.git
正克隆到 'play'...
Username for 'http://gitlab.zml.com': root
Password for 'http://[email protected]':
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
[root@localhost ~]# ls
anaconda-ks.cfg play
[root@localhost ~]# cd play/
[root@localhost play]# touch README.md
[root@localhost play]# git add README.md
[root@localhost play]# git commit -m "add README"
# 位于分支 master
无文件要提交,干净的工作区
[root@localhost play]# git push -u origin master
Username for 'http://gitlab.zml.com': root
Password for 'http://[email protected]':
分支 master 设置为跟踪来自 origin 的远程分支 master。
Everything up-to-date
分支 master 设置为跟踪来自 origin 的远程分支 master。
[root@localhost ~]# cd play/
[root@localhost play]# ls
README.md
[root@localhost play]# vim README.md
[root@localhost play]# cat README.md
# 作业
1. 写博客
2. 做实验
3. [root@localhost play]# git commit -a -m "修改了这个文件 README.md"
[master 9bb7f4e] 修改了这个文件 README.md
1 file changed, 3 insertions(+)
[root@localhost play]# git push -u origin master
Username for 'http://gitlab.zml.com': root
Password for 'http://[email protected]':
Counting objects: 5, done.
Writing objects: 100% (3/3), 308 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To http://gitlab.zml.com/root/play.git
304ec78..9bb7f4e master -> master
分支 master 设置为跟踪来自 origin 的远程分支 master。