Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Last active December 14, 2015 20:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrobinsonc/5145699 to your computer and use it in GitHub Desktop.
Save jrobinsonc/5145699 to your computer and use it in GitHub Desktop.
Git tip: Renombrar usuario de uno o varios commits.
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 "$@";
fi' HEAD
@jrobinsonc
Copy link
Author

TODOs:
Mejora: Que el email y el usuario se puedan poner en variables.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment