Guest User

Untitled

a guest
May 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. git filter-branch --commit-filter '
  2. if [ "$GIT_COMMITTER_NAME" = "convert-repo" ] || [ "$GIT_COMMITTER_NAME" = "some_other_name" ];
  3. then
  4. GIT_COMMITTER_NAME="Some Name Here";
  5. GIT_AUTHOR_NAME="Some Name Here";
  6. GIT_COMMITTER_EMAIL="<someemail@here.com>";
  7. GIT_AUTHOR_EMAIL="<someemail@here.com>";
  8. git commit-tree "$@";
  9. else
  10. git commit-tree "$@";
  11. fi' HEAD;
Add Comment
Please, Sign In to add comment