CentOS is a popular Linux operating system used in server and desktop environments. Github is currently one of the most popular code hosting platforms, where many developers share and manage code. This article will explain how to install Git and GitHub Desktop on CentOS so that you can access GitHub repositories in your local environment.
1. Install Git
- First, update your CentOS system:
sudo yum update
- Execute the following Command to install Git:
sudo yum install git
- After the installation is completed, check the version information of Git through the following command:
git --version
- If you see the output version number, Git has been successfully installed.
2. Install GitHub Desktop
GitHub Desktop is the official desktop application provided by GitHub. It provides a simple and easy-to-use user interface to facilitate you to manage and submit code locally.
- Visit the official website of GitHub Desktop (https://desktop.github.com/) and download the latest version.
- After the download is completed, find the download file and double-click to open it to install. Just follow the prompts.
3. Install and configure the ssh key
You need to configure the SSH key to connect the local environment to the GitHub repository. This is an encrypted authentication method that allows us to interact with GitHub without entering a password.
- Open a terminal window and enter the following command to check if an existing key already exists:
cd ~/.ssh
ls
- If you already have an ssh key, it can be found in the following path (the file name is id_rsa.pub). If you don't have an ssh key, generate it in the next step.
- Assuming you need to generate a new key, use the following command:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
- You will be asked to enter a password for the new key (can be left blank). Next, you will see the following message:
Generating public/private rsa key pair.
Enter file in which to save the key (/home/you/.ssh/id_rsa): [Press enter]
Enter passphrase (empty for no passphrase): [Type a passphrase]
Enter same passphrase again: [Type passphrase again]
- Now, the public key is stored below In the path:
~/.ssh/id_rsa.pub
- Open the id_rsa.pub file using an editor and copy the SSH key to " SSH and GPG Keys" section. This way, you can access your GitHub repository for free.
4. Verify that the setting is successful
- Open a terminal and enter the following command to test your SSH connection:
ssh -T git @github.com
- If you see the following output, the connection is successful:
Hi username! You've successfully authenticated, but GitHub does not provide shell access.
At this point, you have successfully installed Git and GitHub Desktop on your CentOS system and configured an SSH key to connect to the GitHub repository. Now you can access GitHub in your local environment and manage and commit your code.
The above is the detailed content of How to install github on centos. 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 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 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 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 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 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 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 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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

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),
