7 lines
144 B
Bash
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
|