diff options
Diffstat (limited to 'git')
-rw-r--r-- | git/.gitconfig | 28 | ||||
-rw-r--r-- | git/.global_ignore | 1 | ||||
-rw-r--r-- | git/projects/gentoo/.gitconfig | 12 |
3 files changed, 41 insertions, 0 deletions
diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..c35f941 --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,28 @@ +[user] + email = mattst88@gmail.com + name = Matt Turner + signingkey = 0xACEB29740C9A4E97 +[includeIf "gitdir:~/projects/gentoo/"] + path = ~/projects/gentoo/.gitconfig +[color] + ui = auto +[rebase] + autosquash = true +[core] + excludesfile = /home/mattst88/.global_ignore + autocrlf = false + filemode = false + pager = less -+F +[diff] + renames = true +[push] + default = simple +[alias] + fixes = show -s --pretty='format:Fixes: %h (\"%s\")' + co = checkout + br = branch + shwo = show + grpe = grep + lgo = log +[init] + defaultBranch = main diff --git a/git/.global_ignore b/git/.global_ignore new file mode 100644 index 0000000..6e92f57 --- /dev/null +++ b/git/.global_ignore @@ -0,0 +1 @@ +tags diff --git a/git/projects/gentoo/.gitconfig b/git/projects/gentoo/.gitconfig new file mode 100644 index 0000000..79cffde --- /dev/null +++ b/git/projects/gentoo/.gitconfig @@ -0,0 +1,12 @@ +[user] + email = mattst88@gentoo.org +[pull] + ff = only + rebase = merges +[push] + default = simple + gpgsign = if-asked +[commit] + gpgsign = 1 +[sendemail] + to = gentoo-dev@lists.gentoo.org |