Answers for "setup an ec2 instance and install git"

4

install git ec2 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 January-22-2021
1

installing git in ec2

sudo yum update -y
sudo yum install git -y
Posted by: Guest on December-22-2020

Code answers related to "setup an ec2 instance and install git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language