diff options
| author | Peter Son Struschka <me@peter-struschka.com> | 2020-04-04 14:04:42 +0800 |
|---|---|---|
| committer | Peter Son Struschka <me@peter-struschka.com> | 2020-04-04 14:04:42 +0800 |
| commit | 31bfa429f186e81c40b0f377ef9b9849ce45b4f9 (patch) | |
| tree | 791c0914171c391f2a66b5f61a14ccd95b613d10 /git/.config | |
| parent | 8b5377fd1267f080a0c667e1c0f177aea68db27d (diff) | |
| download | dotfiles-31bfa429f186e81c40b0f377ef9b9849ce45b4f9.tar.gz dotfiles-31bfa429f186e81c40b0f377ef9b9849ce45b4f9.tar.bz2 dotfiles-31bfa429f186e81c40b0f377ef9b9849ce45b4f9.tar.lz dotfiles-31bfa429f186e81c40b0f377ef9b9849ce45b4f9.tar.xz dotfiles-31bfa429f186e81c40b0f377ef9b9849ce45b4f9.tar.zst dotfiles-31bfa429f186e81c40b0f377ef9b9849ce45b4f9.zip | |
git: Move git config files to $XDG_CONFIG_HOME
Diffstat (limited to 'git/.config')
| -rw-r--r-- | git/.config/git/config | 20 | ||||
| -rw-r--r-- | git/.config/git/ignore | 3 |
2 files changed, 23 insertions, 0 deletions
diff --git a/git/.config/git/config b/git/.config/git/config new file mode 100644 index 0000000..cd2abd0 --- /dev/null +++ b/git/.config/git/config @@ -0,0 +1,20 @@ +[user] + email = me@peter-struschka.com + name = Peter Son Struschka +[color] + ui = true +[credential] + helper = cache --timeout=600 +[url "https://github.com/"] + insteadOf = "gh:" +[url "git@github.com:"] + pushInsteadOf = "gh:" +[url "https://aur.archlinux.org/"] + insteadOf = "aur:" +[url "ssh+git://aur@aur.archlinux.org/"] + pushInsteadOf = "aur:" +[filter "lfs"] + required = true + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process diff --git a/git/.config/git/ignore b/git/.config/git/ignore new file mode 100644 index 0000000..28e41f3 --- /dev/null +++ b/git/.config/git/ignore @@ -0,0 +1,3 @@ +**/.idea +**/.vscode +**/.#* |
