This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git filter-branch --commit-filter ' | |
| if [ "$GIT_AUTHOR_EMAIL" = GIT_AUTHOR_EMAIL ]; | |
| then | |
| GIT_AUTHOR_NAME="kf"; | |
| GIT_COMMITTER_NAME="kf"; | |
| GIT_AUTHOR_EMAIL="7kfpun@gmail.com"; | |
| GIT_COMMITTER_EMAIL="7kfpun@gmail.com"; | |
| git commit-tree "$@"; | |
| else | |
| git commit-tree "$@"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git remote set-url --add --push origin git://one/repo.git | |
| git remote set-url --add --push origin git://another_one/repo.git |
NewerOlder