Method: 1. Use the "yum install git" command to install git; 2. Use the "adduser git" command to create a git user; 3. Use the "ssh-keygen-t rsa" command to create a public key; 4. Use the "git init --bare" command to initialize the git repository.
The operating environment of this tutorial: linux7.3 system, Git version 2.30.0, Dell G3 computer.
How to build git on linux
1. Install git
First install git, generally For now, the server already has a built-in git installation package, and we only need to execute a simple installation command to install it. For example:
$ yum install git # centos $ apt-get install git # ubuntu
The above is to log in to the server directly with root to operate, and it is also for the convenience of demonstration.
Git is different from mysql. When installing mysql, you must install mysql-server, which is the mysql server. Git is distributed. Every computer with git installed is both a client and a server. Git and Git can communicate with each other, and our so-called git server is actually not fundamentally different from our own computer. However, in order to manage the project more effectively, we all adopt a centralized management method, so we create a "git server" as the final terminal for everyone else to submit code.
2. Create git user and permissions
Of course we are not allowed to use root directly for communication and interaction, so we create a git user for future code submission User.
$ adduser git
After executing this command, you find that there is an additional git directory in the /home directory. Logically speaking, now there is this git user in your system, and the home directory is in /home/git . However, we do not want this user to connect to the server through ssh, so we must prohibit this user from using ssh to connect to the server for operations. We handle it by editing a permissions file:
$ vi /etc/passwd
Find /bin/bash similar to
git:x:1001:1001:,,,:/home/git:/bin/bash
at the end, which is the permission that allows ssh connection operations, we change it to /user/ bin/git-shell, the result is as follows:
git:x:1001:1001:,,,:/home/git:/usr/bin/git-shell
If handled in this way, git will not be able to connect via ssh (actually it is possible, but it will crash).
We also have to assign a password to git, execute:
$ passwd git 123456(你的密码)
This password will be used when you submit the code later.
3. Public key
This is a special step in git. When communicating, the client and server need a certificate for verification. First generate a public key:
$ cd ~ $ ssh-keygen -t rsa
Now you have a public key on your computer, but where is it? In the .ssh directory, folders starting with . are hidden, but you can cd into them.
$ cd .ssh $ vi id_rsa.pub
Now you can see your public key, copy all the contents. Next, we go back to the server to operate.
$ cd /home/git/ $ mkdir .ssh $ cd .ssh $ vi authorized_keys
If it is a bare metal machine, there should be no .ssh directory in the /home/git directory on the server, so we create it ourselves. After opening (automatically created) authorized_keys, paste the public key we just copied into it, ok OK, save and exit.
4. Initialize a git repository
I am used to throwing this kind of things into /var, so we create a git directory under /var
$ cd /var $ mkdir git $ chown -R git:git git $ chmod 777 git $ cd git
Next, we use the git command to initialize a warehouse:
$ git init --bare arepoforyourproject.git
After the initialization is completed, the empty warehouse will be OK.
Note: The .git directory must have read and write permissions, because when we push, we use the git user to push to the server, and there will be a writing process. If it is not granted writable permission, push will fail.
5. Try cloning
Try cloning to see if the warehouse can be used:
$ git clone git@10.0.0.121:/var/git/arepoforyourproject.git
Then you will be prompted to enter your git password, enter Go in, and you will be prompted again to clone a blank repository. This means that the server is OK.
Related recommendations: "Linux Video Tutorial"
The above is the detailed content of How to build git on linux. For more information, please follow other related articles on the PHP Chinese website!

Linux maintenance mode can be entered through the GRUB menu. The specific steps are: 1) Select the kernel in the GRUB menu and press 'e' to edit, 2) Add 'single' or '1' at the end of the 'linux' line, 3) Press Ctrl X to start. Maintenance mode provides a secure environment for tasks such as system repair, password reset and system upgrade.

The steps to enter Linux recovery mode are: 1. Restart the system and press the specific key to enter the GRUB menu; 2. Select the option with (recoverymode); 3. Select the operation in the recovery mode menu, such as fsck or root. Recovery mode allows you to start the system in single-user mode, perform file system checks and repairs, edit configuration files, and other operations to help solve system problems.

The core components of Linux include the kernel, file system, shell and common tools. 1. The kernel manages hardware resources and provides basic services. 2. The file system organizes and stores data. 3. Shell is the interface for users to interact with the system. 4. Common tools help complete daily tasks.

The basic structure of Linux includes the kernel, file system, and shell. 1) Kernel management hardware resources and use uname-r to view the version. 2) The EXT4 file system supports large files and logs and is created using mkfs.ext4. 3) Shell provides command line interaction such as Bash, and lists files using ls-l.

The key steps in Linux system management and maintenance include: 1) Master the basic knowledge, such as file system structure and user management; 2) Carry out system monitoring and resource management, use top, htop and other tools; 3) Use system logs to troubleshoot, use journalctl and other tools; 4) Write automated scripts and task scheduling, use cron tools; 5) implement security management and protection, configure firewalls through iptables; 6) Carry out performance optimization and best practices, adjust kernel parameters and develop good habits.

Linux maintenance mode is entered by adding init=/bin/bash or single parameters at startup. 1. Enter maintenance mode: Edit the GRUB menu and add startup parameters. 2. Remount the file system to read and write mode: mount-oremount,rw/. 3. Repair the file system: Use the fsck command, such as fsck/dev/sda1. 4. Back up the data and operate with caution to avoid data loss.

This article discusses how to improve Hadoop data processing efficiency on Debian systems. Optimization strategies cover hardware upgrades, operating system parameter adjustments, Hadoop configuration modifications, and the use of efficient algorithms and tools. 1. Hardware resource strengthening ensures that all nodes have consistent hardware configurations, especially paying attention to CPU, memory and network equipment performance. Choosing high-performance hardware components is essential to improve overall processing speed. 2. Operating system tunes file descriptors and network connections: Modify the /etc/security/limits.conf file to increase the upper limit of file descriptors and network connections allowed to be opened at the same time by the system. JVM parameter adjustment: Adjust in hadoop-env.sh file

This guide will guide you to learn how to use Syslog in Debian systems. Syslog is a key service in Linux systems for logging system and application log messages. It helps administrators monitor and analyze system activity to quickly identify and resolve problems. 1. Basic knowledge of Syslog The core functions of Syslog include: centrally collecting and managing log messages; supporting multiple log output formats and target locations (such as files or networks); providing real-time log viewing and filtering functions. 2. Install and configure Syslog (using Rsyslog) The Debian system uses Rsyslog by default. You can install it with the following command: sudoaptupdatesud


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment