版本控制gitlab

本文详细介绍了版本控制的重要性,特别是在软件开发中的作用,如追踪文件变更、并行开发和错误修复。重点讲解了GitLab作为版本控制工具的部署步骤,包括安装依赖、设置开机自启、配置外部URL以及启动和重启GitLab服务。此外,还涉及了如何破解GitLab管理员密码,确保系统安全。
摘要由CSDN通过智能技术生成

版本控制gitlab

版本控制介绍

版本控制是指对软件开发过程中各种程序代码、配置文件及说明文档等文件变更的管理,是软件配置管理的核心思想之一。

版本控制最主要的功能就是追踪文件的变更。它将什么时候、什么人更改了文件的什么内容等信息忠实地了记录下来。每一次文件的改变,文件的版本号都将增加。除了记录版本变更外,版本控制的另一个重要功能是并行开发。软件开发往往是多人协同作业,版本控制可以有效地解决版本的同步以及不同开发者之间的开发通信问题,提高协同开发的效率。并行开发中最常见的不同版本软件的错误(Bug)修正问题也可以通过版本控制中分支与合并的方法有效地解决。
具体来说,在每一项开发任务中,都需要首先设定开发基线,确定各个配置项的开发初始版本,在开发过程中,开发人员基于开发基线的版本,开发出所需的目标版本。当发生需求变更时,通过对变更的评估,确定变更的影响范围,对被影响的配置项的版本进行修改,根据变更的性质使配置项的版本树继续延伸或产生新的分支,形成新的目标版本,而对于不受变更影响的配置项则不应发产生变动。同时,应能够将变更所产生的对版本的影响进行记录和跟踪。必要时还可以回退到以前的版本。例如当开发需求或需求变更被取消时,就需要有能力将版本回退到开发基线版本。在曾经出现过的季度升级包拆包和重新组包的过程中,其实就是将部分配置项的版本回退到开发基线,将对应不同需求的不同分支重新组合归并,形成新的升级包版本。
版本控制是软件配置管理的核心功能。所有置于配置库中的元素都应自动予以版本的标识,并保证版本命名的唯一性。版本在生成过程中,自动依照设定的使用模型自动分支、演进。除了系统自动记录的版本信息以外,为了配合软件开发流程的各个阶段。还需要定义、收集一些元数据来记录版本的辅助信息和规范开发流程,并为今后对软件过程的度量做好准备。当然如果选用的工具支持,这些辅助数据将能直接统计出过程数据,从而方便软件过程改进活动的进行。对于配置库中的各个基线控制项,应该根据其基线的位置和状态来设置相应的访问权限。一般来说,对于基线版本之前的各个版本都应处于被锁定的状态,如需要对它们进行变更,则应按照变更控制的流程来进行操作。

常用的版本控制工具:

  • gitlab
  • subversion

gitlab部署

##下载源
[root@gitlab ~]# yum -y install epel-release

##安装git
[root@gitlab ~]# yum -y install epel-release git

##安装依赖包
[root@gitlab ~]# yum -y install curl openssh-server openssh-clients postfix cronie policycoreutils-python-utils

##设置开机自启
[root@gitlab ~]# systemctl restart postfix
[root@gitlab ~]# systemctl enable postfix
Created symlink /etc/systemd/system/multi-user.target.wants/postfix.service → /usr/lib/systemd/system/postfix.service.

##下载gitlab的rpm包
[root@gitlab ~]# wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el8/gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm
[root@gitlab src]# ls
debug  gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm  kernels

##安装gitlab的rpm包
[root@gitlab src]# rpm -ivh gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm 
[root@gitlab src]# rpm -ivh gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm 
警告:gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm: 头V4 RSA/SHA256 Signature, 密钥 ID f27eab47: NOKEY
Verifying...                          ################################# [100%]
准备中...                          ################################# [100%]
正在升级/安装...
   1:gitlab-ce-14.3.2-ce.0.el8        ################################# [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

Help us improve the installation experience, let us know how we did with a 1 minute survey:
https://gitlab.fra1.qualtrics.com/jfe/form/SV_6kVqZANThUQ1bZb?installation=omnibus&release=14-3

[root@gitlab src]# vim /etc/gitlab/gitlab.rb
······
##! https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html
external_url 'http://192.168.240.40'  ##此处设为gitlab的服务器ip地址亦或域名

## Roles for multi-instance GitLab
······

[root@gitlab ~]# gitlab-ctl reconfigure
Running handlers:
Running handlers complete
Chef Infra Client finished, 310/1305 resources updated in 04 minutes 00 seconds

Notes:
Default admin account has been configured with following details:
Username: root
Password: You didn't opt-in to print initial root password to STDOUT.
Password stored to /etc/gitlab/initial_root_password. This file will be cleaned up in first reconfigure run after 24 hours.

NOTE: Because these credentials might be present in your log files in plain text, it is highly recommended to reset the password following https://docs.gitlab.com/ee/security/reset_user_password.html#reset-your-root-password.

gitlab Reconfigured!

[root@gitlab ~]# gitlab-ctl restart
ok: run: alertmanager: (pid 113559) 1s
ok: run: gitaly: (pid 113614) 0s
ok: run: gitlab-exporter: (pid 113709) 0s
ok: run: gitlab-workhorse: (pid 113711) 0s
ok: run: grafana: (pid 113720) 1s
ok: run: logrotate: (pid 113773) 0s
ok: run: nginx: (pid 113814) 1s
ok: run: node-exporter: (pid 113860) 0s
ok: run: postgres-exporter: (pid 113866) 1s
ok: run: postgresql: (pid 113956) 1s
ok: run: prometheus: (pid 114006) 0s
ok: run: puma: (pid 114714) 0s
ok: run: redis: (pid 114719) 1s
ok: run: redis-exporter: (pid 114766) 0s
ok: run: sidekiq: (pid 115040) 1s

[root@gitlab ~]# ss -antl
State               Recv-Q              Send-Q                           Local Address:Port                           Peer Address:Port             Process              
LISTEN              0                   1024                                 127.0.0.1:9100                                0.0.0.0:*                                     
LISTEN              0                   1024                                 127.0.0.1:9229                                0.0.0.0:*                                     
LISTEN              0                   1024                                 127.0.0.1:8080                                0.0.0.0:*                                     
LISTEN              0                   128                                  127.0.0.1:9168                                0.0.0.0:*                                     
LISTEN              0                   128                                  127.0.0.1:8082                                0.0.0.0:*                                     
LISTEN              0                   1024                                 127.0.0.1:9236                                0.0.0.0:*                                     
LISTEN              0                   128                                    0.0.0.0:22                                  0.0.0.0:*                                     
LISTEN              0                   1024                                 127.0.0.1:3000                                0.0.0.0:*                                     
LISTEN              0                   100                                  127.0.0.1:25                                  0.0.0.0:*                                     
LISTEN              0                   511                                    0.0.0.0:8060                                0.0.0.0:*                                     
LISTEN              0                   1024                                 127.0.0.1:9121                                0.0.0.0:*                                     
LISTEN              0                   1024                                 127.0.0.1:9090                                0.0.0.0:*                                     
LISTEN              0                   1024                                 127.0.0.1:9187                                0.0.0.0:*                                     
LISTEN              0                   1024                                 127.0.0.1:9093                                0.0.0.0:*                                     
LISTEN              0                   128                                      [::1]:9168                                   [::]:*                                     
LISTEN              0                   128                                          *:80                                        *:*                                     
LISTEN              0                   32                                           *:21                                        *:*                                     
LISTEN              0                   128                                       [::]:22                                     [::]:*                                     
LISTEN              0                   100                                      [::1]:25                                     [::]:*                                     
LISTEN              0                   1024                                         *:9094                                      *:*   

##查看版本号
[root@gitlab ~]# head -1 /opt/gitlab/version-manifest.txt
gitlab-ce 14.3.2

##破解管理员密码
[root@gitlab ~]# gitlab-rails console -e production
--------------------------------------------------------------------------------
 Ruby:         ruby 2.7.4p191 (2021-07-07 revision a21a3b7d23) [x86_64-linux]
 GitLab:       14.3.2 (92acfb1b8a9) FOSS
 GitLab Shell: 13.21.1
 PostgreSQL:   12.7
--------------------------------------------------------------------------------
Loading production environment (Rails 6.1.3.2)
irb(main):001:0> user = User.where(id: 1).first
=> #<User id:1 @root>
irb(main):002:0> user.password = 'liuqiang123!'
=> "liuqiang123!"
irb(main):003:0> user.password_confirmation = 'liuqiang123!'
=> "liuqiang123!"
irb(main):004:0> user.save!
Enqueued ActionMailer::MailDeliveryJob (Job ID: 5be81e60-0220-4ff5-9f2d-74019b77babb) to Sidekiq(mailers) with arguments: "DeviseMailer", "password_change", "deliver_now", {:args=>[#<GlobalID:0x00007fa87e149320 @uri=#<URI::GID gid://gitlab/User/1>>]}
=> true
irb(main):005:0> exit

gitlab管理

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

枯木逢秋࿐

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值