This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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" |