Skip to content

Instantly share code, notes, and snippets.

View Eihen's full-sized avatar

Emerson Belancieri Eihen

  • Bauru, Brazil
View GitHub Profile
@staltz
staltz / introrx.md
Last active June 26, 2024 10:24
The introduction to Reactive Programming you've been missing
@ozh
ozh / gist:4032945
Created November 7, 2012 16:57
Change committer name in git
git filter-branch --commit-filter '
if [ "$GIT_COMMITTER_NAME" = "<Old Name>" ];
then
GIT_COMMITTER_NAME="<New Name>";
GIT_AUTHOR_NAME="<New Name>";
GIT_COMMITTER_EMAIL="<New Email>";
GIT_AUTHOR_EMAIL="<New Email>";
git commit-tree "$@";
else
git commit-tree "$@";