Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to build Git Warehouse

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how to build a Git repository for everyone, Xiaobian feels quite practical, so share it with you for a reference, I hope you can gain something after reading this article.

GitLab is a web-based Git repository management tool using MIT license. We can use it to build our own Git repository. This article will introduce how to use GitLab to quickly build Git repository under Linux.

Gitlab server build

Under Linux (CenterOS7.6) we will install Gitlab in Docker mode. For friends who don't know Docker, please refer to Docker command for developers.

Download Docker image of Gitlab docker pull gitlab/gitlab-ce Run the following command to start Gitlab

Note that our Gitlab http service runs on port 1080 of the host, where we map Gitlab configuration, logs, and data directories to specified folders on the host to prevent us from losing data after recreating the container.

docker run --detach \ --publish10443:443 --publish1080:80 --publish1022:22 \ --name gitlab \ --restart always \ --volume /mydata/gitlab/config:/etc/gitlab \ --volume /mydata/gitlab/logs:/var/log/gitlab \ --volume/mydata/gitlab/data:/var/opt/gitlab \ gitlab/gitlab-ce:latest Open the specified port of the firewall

Since Gitlab runs on port 1080, we need to open this port. Be careful not to close the firewall directly, otherwise Gitlab will not start.

#Open port 1080 firewall-cmd --zone=public --add-port=1080/tcp --permanent#Restart firewall to take effect systemctl restart firewalld#View open ports firewall-cmd --list-ports Access Gitlab

Visit address: 192.168.3.101:1080/

Because Gitlab starts slowly, you need to wait patiently for about 10 minutes. If Gitlab does not start and complete the access, the following error will appear.

You can check the container startup log dynamically with the docker command to see if gitlab has started.

docker logs gitlab -f

Use of Gitlab

The first time you access Gitlab after it starts, it will let you reset the password of your root account

After resetting, enter your account password to log in

Select Create Project, Create Organization, Create Account

create an organization

First we need to create an organization, and then create users and projects separately under this organization, so that users of the same organization can use the projects under this organization.

Create users and change passwords

Find the Add User button

Enter username Password Add user

Modify user password in editing interface

Create project and add README file

Assign users to organizations

Git client installation and use Download Git client and install

Download address: github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe

After downloading, click Next all the way to install.

clone project

Find the address of the project clone:

Open the Git command-line tool:

Execute the following command to clone the project locally:

git clone http://192.168.3.101:1080/macrozheng/hello.git Submit Code

Go to the project directory, modify README.md and submit:

#Enter project directory cd hello/#Add current modified file to temporary storage git add .# commit code git commit -m "first commit" push to remote repository git push

Pull remote repository code

Modify the file contents in readme on Gitlab:

Pull Code:

git pull create locally and commit branch #switch and create dev branch from current branch git checkout -b dev#push newly created dev branch to remote repository git push origin dev

Other common commands #Switch to dev branch git checkout dev#View local repository file status git status#View all local branches git branch#View commit record git log About "How to build Git repository" This article is shared here, I hope the above content can be of some help to everyone, so that you can learn more knowledge, if you think the article is good, please share it to let more people see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 218

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report