diff options
Diffstat (limited to '.gitconfig')
| -rw-r--r-- | .gitconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..4d3819b --- /dev/null +++ b/.gitconfig | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | [user] | ||
| 2 | name = Mitja Felicijan | ||
| 3 | email = mitja.felicijan@gmail.com | ||
| 4 | signingkey = mitja.felicijan@gmail.com | ||
| 5 | [core] | ||
| 6 | editor = vim | ||
| 7 | [commit] | ||
| 8 | gpgsign = true | ||
| 9 | [tag] | ||
| 10 | gpgsign = true | ||
| 11 | [alias] | ||
| 12 | pushall = !sh -c \"git remote | xargs -L1 git push --all\" | ||
| 13 | tree = log --oneline --graph | ||
| 14 | [init] | ||
| 15 | defaultBranch = master | ||
| 16 | [pull] | ||
| 17 | rebase = true | ||
