diff options
-rw-r--r-- | .gitconfig | 22 | ||||
-rwxr-xr-x | .gitignore.d/git | 13 |
2 files changed, 35 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..645ce5d --- /dev/null +++ b/.gitconfig @@ -0,0 +1,22 @@ +[user] + name = P. J. McDermott + email = pj@pehjota.net +[core] + editor = vim + pager = less -+FX +[color] + diff = always +[url "git://git.debian.org/d-i/"] + insteadOf = git+ssh://git.debian.org/git/d-i/ +[url "ssh://patrick.mcdermott@git.libiquity.com/srv/git/branding/branding.git"] + insteadOf = ssh://git.libiquity.com/srv/git/branding/branding.git +[sendemail "proteanos-dev"] + from = \"Patrick 'P. J.' McDermott\" <pj+proteanos-ml@pehjota.net> + cc = proteanos-dev@lists.proteanos.com + smtpserver = mail.pehjota.net + suppresscc = self +[sendemail "echo"] + from = \"Patrick 'P. J.' McDermott\" <pj@pehjota.net> + to = pj@pehjota.net + smtpserver = mail.pehjota.net + suppresscc = self diff --git a/.gitignore.d/git b/.gitignore.d/git new file mode 100755 index 0000000..396057e --- /dev/null +++ b/.gitignore.d/git @@ -0,0 +1,13 @@ +# Exclude all files +* + +# Include relevant files +!/.gitconfig +!/.gitignore.d/ +!/.gitignore.d/git + +# Exclude swap and backup files +*.s[a-w]? +*.vim +*~ +*.orig |