Skip to Content
Last repository update 9/13/2025 🎉

Install latest Git

Learn how to install latest Git

karchunt

Kar Chun Tan

Creator

Metadata

Wed Mar 26 2025

1 min read

51 words

Learn how to install latest Git

Install stable Git version

sudo add-apt-repository ppa:git-core/ppa sudo apt-get update sudo apt-get install git

Check Git version

git --version

Optional: Configure Git

git config --global user.name "Your name" git config --global user.email "Your email" # enable color output git config --global color.ui author # check configuration git config --global --list
Last updated on