dotfiles/install-hooks/git/post-install
2023-12-11 10:20:37 +03:00

9 lines
266 B
Bash
Executable File

#!/usr/bin/env bash
git config --global user.name "$USER"
git config --global user.email "${USER}@${HOST:-$HOSTNAME}"
git config --global user.signingkey "$USER"
git config --global github.user "$USER"
git config --global github.email "${USER}@${HOST:-$HOSTNAME}"