Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 374 Bytes

git_install.md

File metadata and controls

19 lines (17 loc) · 374 Bytes

Git Install

Linux Install

  1. Update the system and install git
    sudo apt update
    sudo apt install git git-lfs
  2. Verify the install
    git --version
  3. Configure the git settings
    git config --global user.name "Your Name"
    git config --global user.email "[email protected]"
  4. Enjoy Git!