Getting started guide for gitlab to quickly master daily needs
1. Premise
jenkins plug-in address: http://updates.jenkins-ci.org/download/plugins/
192.168.211.90 gitlab,jenkins,Maven192.168.211.91 git,httpd192.168.211.92 nexus,sonarqube,docker-ce
192.168.211.93 this is a separate environment for testing jenkins and docker
Turn off the firewall
# systemctl disable firewalld.service
close Networ ...
Added by McMaster on Sun, 20 Feb 2022 13:48:07 +0200
gitlab docker failed to access with ssh
preface
Previously, a gitlab server was built on Alibaba cloud student computers. Because gitlab already exists on the host and the environment has been messed up, it is not easy to install gitlab directly, so we have to run it in the docker container.
It is very convenient for gitlab to deploy docker container. You can use it by switching th ...
Added by BoostinZX on Wed, 09 Feb 2022 22:49:16 +0200
[GIT] Based on gitlab-ci.yml release front end Engineering
be based on. gitlab-ci.yml release front end Engineering
Date : 2021.06.11 Author: jwensh
Key words: gitlab ci/cd
1. Demand
Use gitlab to manage the engineering code, and use gitlab Ci to publish the engineering code to the test or development environmentThe trigger condition can trigger the publishing operation according to the ...
Added by depraved on Tue, 01 Feb 2022 00:26:24 +0200
Git project code pull, push and conflict resolution
catalogue
SSH keys configuration
Git branch
Git code pull push and conflict resolution
View local code change and code fallback version operations
SSH keys configuration
The corresponding project is created on gitlab. After entering the project details, a git address will be generated to clone or pull the code of the remote warehouse ...
Added by thomasgrant on Sat, 29 Jan 2022 19:46:26 +0200
When deploying GitLab, it is required to display the real IP address of the server
After the GitLab deployed in the teaching environment is successful, copying the address bar of GitLab will hide the real IP of the server, which is inconvenient in practical work. Therefore, I found a method on the Internet that can directly display the real IP:
1, Modify the sshd default port.
Because Git is accessed through SSH protocol, the ...
Added by yaba on Wed, 19 Jan 2022 04:32:11 +0200
Super detailed Git learning record
Super detailed Git learning notes
The video of Shang Silicon Valley found from station B learned Git, recorded the learning content, and gained a lot
Learning address: https://www.bilibili.com/video/BV1vy4y1s7k6?p=11&share_source=copy_web
Git introduces distributed version control tools VS centralized version control tools
What is ...
Added by Garcia on Sat, 15 Jan 2022 15:23:17 +0200
[git] basic maintenance and use of gitlab
[git] basic maintenance and use of gitlab
Basic introduction
GitLab is a self managed Git project warehouse. You can build your own warehouse for personal code management. Its function is similar to github.
install
Download gitlab download address: https://about.gitlab.com/downloads/
Install dependent packages
1
2
3
4
5
6
7
8
9
10
...
Added by Benny Johnson on Mon, 03 Jan 2022 14:54:37 +0200
git workflow and instructions
Understanding and use of Git
1. Basic concepts
1.1. What is git
Git, the full name of GIT, is a distributed version control system. Git is usually used in programming. Git supports distributed deployment and can effectively and high-speed handle version management from very small to very large projects. The biggest difference between d ...
Added by sun14php on Mon, 03 Jan 2022 03:11:50 +0200
docker installs gitlab to implement code submission and interface test
Installing Gitlab
1.1. Obtain gitlab image package
docker pull gitlab/gitlab-ce # Community Edition (CE) here represents community specimens,
1.2. Prepare gitlab working directory on the machine
mkdir -p /data/gitlab/config # Create config directory
mkdir -p /data/gitlab/logs # Create logs directory
mkdir -p /data/gitlab/data # ...
Added by miha on Fri, 10 Dec 2021 03:53:25 +0200
Linux ubuntu manual installation of gitlab, docker installation of gitlab tutorial and configuration
Construction environment: Gitlab server 192.168.152.131 gitlab installation address: https://about.gitlab.com/install/
1: Native manual installation gitlab
1. Install and configure the necessary dependencies
sudo apt-get update
sudo apt-get install -y curl openssh-server ca-certificates tzdata perl
2. Add GitLab package and install it
cu ...
Added by tjodolv on Wed, 20 Oct 2021 06:17:06 +0300