Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 395 Bytes

git_installation_ubuntu.md

File metadata and controls

24 lines (15 loc) · 395 Bytes

Git Installation in Ubuntu using Terminal

sudo apt update

sudo apt install git

git --version

Git SSH Key generation in Ubuntu using Terminal

ssh-keygen -t rsa -b 4096 -C "[email protected]"

eval "$(ssh-agent -s)"  # after this command add public key in your GitHub profile

Clone remote Git repository using SSH

git clone <your_git_ssh_url>