vscode:切换git账号
1、
git config --global --unset credential.helper
git config --global --unset user.name
git config --global --unset user.email
2、
git config --global user.name "用户名"
git config --global user.email "用户邮箱"
3、
git config --global credential.helper store
git fetch origin 分支名
git checkout 分支名