As the most popular code hosting platform in the open source community, the use of GitHub has become standard for modern software development. As one of the main tools for developers, Linux system is undoubtedly a good choice to build GitHub on Linux. This article will introduce how to set up and use GitHub on Linux.
Step one: Create a GitHub account
If you don’t have a GitHub account yet, you need to first create an account on the GitHub official website. There is no need to go into details about this operation, there are detailed instructions on the website.
Step 2: Install Git
Install Git through the command line under Ubuntu:
sudo apt-get update sudo apt-get install git
Install Git through the command line under CentOS:
sudo yum install git
Step 3: Create an SSH key
GitHub uses SSH keys for user authentication and communication. Therefore, before using GitHub, you need to create an SSH key on your local machine.
Execute the following command on Linux:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
During the execution process, the system will prompt you to enter the storage path and password of the secret key, just press Enter. If you do not need password protection, just press the Enter key continuously.
The generated SSH key storage path defaults to ~/.ssh/id_rsa.pub. Use the cat command to view the public key.
cat ~/.ssh/id_rsa.pub
Copy the contents of the public key to your GitHub account's SSH key. Enter the GitHub website, click Settings on the menu bar, then select SSH and GPG keys, then copy the public key content to the interface for adding a key, and finally save it.
Step 4: Create a warehouse
Creating a warehouse on GitHub is very simple. Just click the New Repository button on the website and enter the warehouse name and related information.
Step 5: Clone the warehouse
Use the Git command on the local machine to clone the warehouse on the server:
git clone git@github.com:username/repo.git
Where username is your GitHub username, repo is the name of the warehouse you created.
Step 6: Add files and submit changes
Add or modify files in the cloned local warehouse, and then submit them through Git commands.
git add . git commit -m "Add new file" git push origin master
Among them, the add command will add the files you modified; commit will submit your changes, and the -m parameter is followed by a description of the submitted information as a comment; push will push your changes to GitHub In the warehouse. If you have multiple branches, you can specify the corresponding branch name in push.
Step 7: Create a branch
Use Git command to create a new branch:
git branch new-branch
where new-branch is the name of the new branch created.
Switch to the new branch:
git checkout new-branch
Add the modified files on the new branch and submit using Git:
git add . git commit -m "Add new branch" git push origin new-branch
Step 8: Merge branches
Merge the new-branch branch to the master branch:
git checkout master git merge new-branch
Use the push command to push the merged code to GitHub:
git push origin master
So far, we have learned how to build it on Linux And use GitHub. Hope this article can be helpful to you!
The above is the detailed content of How to build github in linux. For more information, please follow other related articles on the PHP Chinese website!

This article provides a guide to Git management, covering GUI tools (Sourcetree, GitKraken, etc.), essential commands (git init, git clone, git add, git commit, etc.), branch management best practices (feature branches, pull requests), and merge con

This guide explains how to push a single Git commit to a remote branch. It details using a temporary branch to isolate the commit, pushing this branch to the remote, and then optionally deleting the temporary branch. This method avoids conflicts and

This article explains the difference between Git's commit and push commands. git commit saves changes locally, while git push uploads these committed changes to a remote repository. The article highlights the importance of understanding this distin

This article addresses common Git commit failures. It details troubleshooting steps for issues like untracked files, unstaged changes, merge conflicts, and pre-commit hooks. Solutions and preventative measures are provided to ensure smoother Git wo

This article details methods for viewing Git commit content. It focuses on using git show to display commit messages, author info, and changes (diffs), git log -p for multiple commits' diffs, and cautions against directly checking out commits. Alt

This article explains the distinct roles of git add and git commit in Git. git add stages changes, preparing them for inclusion in the next commit, while git commit saves the staged changes to the repository's history. This two-step process enables

This beginner's guide introduces Git, a version control system. It covers basic commands (init, add, commit, status, log, branch, checkout, merge, push, pull) and resolving merge conflicts. Best practices for efficient Git use, including clear comm

This article introduces Git, a distributed version control system. It highlights Git's advantages over centralized systems, such as offline capabilities and efficient branching/merging for enhanced collaboration. The article also details learning r


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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

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

SublimeText3 Linux new version
SublimeText3 Linux latest version
