We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
安全起见,确保你的仓库是新 clone 的,并且没有新的提交
git config user.name xxx git config user.email [email protected]
git filter-branch -f --env-filter ' OLD_EMAIL="[email protected]" CORRECT_NAME="xxx" CORRECT_EMAIL="[email protected]" if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] then export GIT_COMMITTER_NAME="$CORRECT_NAME" export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL" fi if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ] then export GIT_AUTHOR_NAME="$CORRECT_NAME" export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL" fi ' --tag-name-filter cat -- --branches --tags
The text was updated successfully, but these errors were encountered:
No branches or pull requests
安全起见,确保你的仓库是新 clone 的,并且没有新的提交
The text was updated successfully, but these errors were encountered: