Skip to content

Instantly share code, notes, and snippets.

@qyuh
qyuh / quickstart.sh
Created April 1, 2025 09:08 — forked from LazyHatGuy/quickstart.sh
My Debian Linux Quickstart Script
#!/bin/bash
# Update
sudo apt update && sudo apt upgrade -y
# Setup Git
sudo apt install git -y
git config --global user.email "1010359+TheLazyHatGuy@users.noreply.github.com"
git config --global user.name "TheLazyHatGuy"
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"