From: martin f. krafft Date: Sat, 10 May 2008 10:55:10 +0000 (+0100) Subject: initial checkin X-Git-Url: https://git.madduck.net/etc/git.git/commitdiff_plain/a8b58654f90e8fc3fa73fe4cd7240c5b03874947 initial checkin --- a8b58654f90e8fc3fa73fe4cd7240c5b03874947 diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..56ae58f --- /dev/null +++ b/.gitconfig @@ -0,0 +1,20 @@ +[user] + name = martin f. krafft + email = madduck@madduck.net + signingkey = 330c4a75 +[core] + pager = cat +[gui] + fontui = -family rotissansserif -size 10 -weight bold -slant roman -underline 0 -overstrike 0 +[alias] + restore = checkout HEAD + dist = "!git archive --format=tar -v --prefix=$(git describe HEAD)/ $(git describe HEAD) | gzip -9 > ../$(git describe HEAD).tar.gz" + st = status + co = checkout + ci = commit -a + stat = status + files = ls-files -v --deleted --modified --others --directory --no-empty-directory --exclude-standard + returnto = "!git add . && git commit -m'stowing away trash' >/dev/null && d=$(date +%Y.%m.%d.%H.%M.%S) && git tag trash/$d && echo tagged unwanted worktree $(git rev-parse --short HEAD) with trash/$d && git reset --hard HEAD^ >/dev/null && git reset --hard" +[clean] + requireForce = true +