This file contains 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 --env-filter ' | |
if [ "$GIT_AUTHOR_EMAIL" = "email@email.com" ]; then | |
GIT_AUTHOR_NAME="username" | |
GIT_AUTHOR_EMAIL="email2@email2.com" | |
fi | |
if [ "$GIT_COMMITTER_EMAIL" = "email@email.com" ]; then | |
GIT_COMMITTER_NAME="username" | |
GIT_COMMITTER_EMAIL="email2@email2.com" | |
fi | |
' --tag-name-filter cat -- --branches --tags |
This file contains 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
netsh winsock reset | |
netsh int ip reset | |
ipconfig /release | |
ipconfig /renew | |
ipconfig /flushdns |