Install Git On Amazon Linux

[Solved] Install Git On Amazon Linux | Shell - Code Explorer | yomemimo.com
Question : install git on amazon linux

Answered by : hastings-keith-a7mjro0pk295

#Create an EC2 instance with Amazon Linux 2 with internet access
#Connect to your instance using putty
 
#Perform a quick update on your instance:
sudo yum update -y
 
#Install git in your EC2 instance
sudo yum install git -y
 
#Check git version
git version

Source : https://cloudaffaire.com/how-to-install-git-in-aws-ec2-instance/ | Last Update : Sun, 10 Oct 21

Question : insall git onec2

Answered by : siddharth-bansal

$ sudo yum install git

Source : | Last Update : Mon, 18 May 20

Question : installing git on ec2

Answered by : black-bug-ja6xhw1wpj7e

sudo yum install git -y

Source : | Last Update : Tue, 03 Nov 20

Answers related to install git on amazon linux

Code Explorer Popular Question For Shell