how to make VS to ask username for git again code example
Example 1: vscode save git credentials
git remote set-url origin https://<USERNAME>:<PASSWORD>@bitbucket.org/path/to/repo.git
Example 2: git push ubuntu need to supply email and password everytime
# inside of ~/.netrc
machine github.com
login <user>
password <password>