Skip to content

Instantly share code, notes, and snippets.

@5minslearn
Last active November 12, 2022 13:17
Show Gist options
  • Save 5minslearn/b0349d64f0b9931fe1776f5142fb78bf to your computer and use it in GitHub Desktop.
Save 5minslearn/b0349d64f0b9931fe1776f5142fb78bf to your computer and use it in GitHub Desktop.
Git installation and Configuration Script
# Install Git
sudo apt-get update
sudo apt-get -y install git
# Configure Git with your name and email
git config --global user.name "your_name"
git config --global user.email "your_email"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment