Skip to content

git

notes

prerequisites
  • install git

    apt install -y git
    
    pacman -S --noconfirm git
    
  • install git

    winget install -eh --id Git.Git
    
variables
variable description example
NAME first and last names John Doe
EMAIL github private relay email address [email protected]
resources

git setup

configuring git

1
2
3
4
git config --global user.name "$NAME"
git config --global user.email $EMAIL
git config --global core.ignorecase false
git config --global code.editor nvim