git config --global core.autocrlf true
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='okzkx'; GIT_AUTHOR_EMAIL='okzkx@qq.com'; GIT_COMMITTER_NAME='okzkx'; GIT_COMMITTER_EMAIL='okzkx@qq.com';" HEAD
git config user.name "okzkx"
git config user.email "okzkx@qq.com"
git config --global user.name "okzkx"
git config --global user.email "okzkx@qq.com"
git config --global http.proxy 127.0.0.1:9788 --replace-all
#!/bin/bash
git fetch origin
git checkout develop
git reset --hard origin/develop
git submodule foreach --recursive 'git fetch origin'
git submodule foreach --recursive 'git checkout develop'
git submodule foreach --recursive 'git reset --hard origin/develop'
read -p "Press Enter to continue..."
git tag --annotate <tag-name> <commit-hash> -m <message>
git tag --annotate v0.4.3 dffa0d20de035e303258dd8e29bac626e1beb063 -m Job-performance