Answers for "aws linux install git"

2

install git on amazon linux

#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
Posted by: Guest on October-03-2021
1

how to install git on aws linux

# simply run the below command
sudo yum install git -y
Posted by: Guest on June-16-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language