YouTube Icon

Code Playground.

How to Install Git on Raspberry Pi

CFG

How to Install Git on Raspberry Pi

Git is a dispersed form control framework that is being utilized by most programming groups today. It permits you to monitor your code changes, return to past stages, make branches , and to work together with your kindred designers. 

Git is initially evolved by Linus Torvalds , the maker of the Linux part. 

This instructional exercise discloses how to introduce Git on Raspberry Pi. We're expecting that you have Raspbian introduced on your Raspberry Pi . 

For a great many people, the most straightforward and the prescribed method to introduce Git is to introduce it utilizing the well-suited bundle the executives apparatus. 

On the off chance that you need to introduce the most recent stable rendition of Git from source, look down to the Installing Git from the Source part of this instructional exercise. 

Installing Git with Apt

The Git bundle is remembered for the Raspbian's default stores. 

Run the accompanying order as root or client with sudo benefits to introduce Git on your Raspberry Pi: 

sudo apt update
sudo apt install git

Enter the order underneath to check the establishment: 

git --version

At the hour of composing this article, the current rendition of Git accessible in the Raspberry Pi archives is 2.20.1. 

git version 2.20.1

That is it! You have introduced Git, and you can begin utilizing it. 

Introducing Git from the Source 

Ordering Git from the source permits you to introduce the most recent Git adaptation and to tweak the construct alternatives. Be that as it may, you won't have the option to keep up your Git establishment through the well-suited bundle director. 

sudo apt update
sudo apt install make libssl-dev libghc-zlib-dev libcurl4-gnutls-dev libexpat1-dev gettext
cd /usr/src/

Download the tar.gz file as git.tar.gz using the link you copied earlier:

sudo wget https://github.com/git/git/archive/v2.24.1.tar.gz -O git.tar.gz

As of now, the latest stable Git rendition is 2.24.1, however it might be distinctive for you. 

We will download Git source in the/usr/src catalog, which is the regular area to put source records. Explore to the index : 

sudo tar -xf git.tar.gz
cd git-*

Download the tar.gz record as git.tar.gz utilizing the connection you duplicated before: 

sudo wget https://github.com/git/git/chronicle/v2.24.1.tar.gz - O git.tar.gz 

Next, separate the tarball and change to the git source index by composing: 

Run the accompanying two orders to gather and introduce Git: 

sudo make prefix=/usr/local all
sudo make prefix=/usr/local install

Type git - adaptation to confirm the establishment: 

git --version
git version 2.24.1

Afterward, when another rendition is delivered, to refresh Git, download the file and rehash the manufacture cycle. 

Configuring Git

Since you have Git introduced on your Raspberry Pi machine, it is a smart thought to set up your own data. The accompanying orders will set your submit name and email address: 

git config --global user.name "Your Name"
git config --global user.email "youremail@yourdomain.com"

To affirm that you have set your data effectively in Git, type: 

git config --list
user.name=Your Name
user.email=youremail@yourdomain.com

The setup settings are put away in the ~/.gitconfig record: 

~/.gitconfig

[user]
    name = Your Name
    email = youremail@yourdomain.com

On the off chance that you need to roll out extra improvements to the worldwide Git design, use either the git config order or alter the ~/.gitconfig record by hand. 

Conclusion

Introducing Git on Raspberry Pi involves running a solitary adept order. In the event that you need to utilize the most recent Git adaptation, you'll have to assemble it from the source. 

With Raspberry Pi, you can set up your own Git worker on your nearby organization. 

In the event that you are new to Git, check the Pro Git book , which is a fantastic asset for finding out about how to utilize Git. 

Leave a remark underneath on the off chance that you hit an issue or have input.




CFG