Hi Steve,
You could try a filter branch command :
git filter-branch --commit-filter '
if [ "$GIT_COMMITTER_NAME" = "" ];
then
GIT_COMMITTER_NAME="";
GIT_AUTHOR_NAME="";
GIT_COMMITTER_EMAIL="";
GIT_AUTHOR_EMAIL="";
I apparently committed some work without having properly set up my git
name/email config settings after my OS re-install.
https://github.com/sebersole/hibernate-core/commit/99909f05978872cee6195c291d06e4f15b8cdf9f
versus say,
https://github.com/sebersole/hibernate-core/commit/2025f197e6a3300371
On Thu, 30 Jun 2011 22:04:39 +0200, Gunnar Morling
wrote:
> Some minor remarks:
>
> * In listing 2 setEmail() instead of a getter is annotated.
>
> I'm not sure whether this is intentionally, otherwise it would make
> sense to use getters as in BV.
Good catch. I was assuming getters. Need to c