This file contains hidden or 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
| After logging in from different git account in VSCode, if changes are committed from an old account, then follow the below process | |
| Check the currently set username & email | |
| git config --global --get user.name | |
| git config --global --get user.email | |
| Delete the set username & email | |
| git config --global --unset-all user.name | |
| git config --global --unset-all user.email |