env/git_config
Marc Cataford e495948098
Feat/git aliases (#3)
* feat: prune refs on fetch

* feat: base git aliases

feat: aliases
2022-11-19 11:29:45 -05:00

7 lines
144 B
Bash

#!/bin/bash
# Always sign commits.
git config --global commit.gpgsign true
# Prune stale refs on fetch.
git config --global fetch.prune true