dotfiles

<-- duh.
Log | Files | Refs | LICENSE

commit 5ec9941f51fd03c1257fafe8f2211a3be896af84
parent 95d0abada22a736220fe15c911fc3bb9d3a6b836
Author: hhvn <dev@haydenvh.com>
Date:   Tue,  2 Mar 2021 12:55:43 +0000

.config/git/format-patch .config/git/config: configure git-format-patch(1) and git-send-email(1)

Diffstat:
M.config/git/config | 14+++++++++++++-
A.config/git/format-patch | 3+++
2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/.config/git/config b/.config/git/config @@ -1,7 +1,7 @@ # This is Git's per-user configuration file. [user] name = hhvn - email = hayden@haydenvh.com + email = dev@haydenvh.com [blame] date = human @@ -9,5 +9,17 @@ [alias] hist = !sh ~/.config/git/hist mrg = merge --no-ff + fm = !sh ~/.config/git/format-patch + [init] defaultBranch = master + +[format] + headers = "Organization: haydenvh.com" + +[sendemail] + smtpDomain = port.haydenvh.com + smtpServer = haydenvh.com + smtpEncryption = tls + smtpServerPort = 587 + cc = "" diff --git a/.config/git/format-patch b/.config/git/format-patch @@ -0,0 +1,3 @@ +#!/bin/sh + +git format-patch --compact-summary --minimal --subject-prefix "$(basename $(pwd))] [PATCH" -n $@