May the Month of Many Wonders

I was compelled to chronicle the variety of gifts that accompany this fine month.

First and foremost my parents just shared their 44th wedding anniversary this past week. The influence my folks have had on my life goes far beyond mere existence.

(more…)

A gift to future me, git rename user in old commits

Say goodbye to old crufty commits from unknown@localmachine


#!/bin/sh

git filter-branch --env-filter '
if [ "$GIT_COMMITTER_NAME" = "unknown" ];
then
export GIT_COMMITTER_NAME="user";
export GIT_COMMITTER_EMAIL="user@email.com";
fi
if [ "$GIT_AUTHOR_NAME" = "unknown" ];
then
export GIT_AUTHOR_NAME="user";
export GIT_AUTHOR_EMAIL="user@email.com";
fi'

(more…)