diff options
author | Malfurious <m@lfurio.us> | 2025-03-03 02:11:17 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2025-03-03 02:11:17 -0500 |
commit | 0ffa59d94968503bdb8a63c931cbc69ff0327ff3 (patch) | |
tree | b22dc878579c0baf065b79427229e8e01a9dd99d | |
parent | 618fd3661d0eeef53e29cca93903bdcbfa3bb2a2 (diff) | |
download | rice-0ffa59d94968503bdb8a63c931cbc69ff0327ff3.tar.gz rice-0ffa59d94968503bdb8a63c931cbc69ff0327ff3.zip |
git: Include local config from unversioned file
Create .gitconfig.local as a place for user to place their settings (eg:
name, email, experimental options) without dirtying the .gitconfig file
in the repository.
Diffstat (limited to '')
-rw-r--r-- | .gitconfig | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,6 @@ +[include] + path = ~/.gitconfig.local + [advice] addIgnoredFile = false detachedHead = false |