Skip to content

Instantly share code, notes, and snippets.

View AbhijitSarode's full-sized avatar
🎯

Abhijit Sarode AbhijitSarode

🎯
View GitHub Profile
@AbhijitSarode
AbhijitSarode / GitCommands.txt
Last active July 11, 2022 07:51
Commands to change git account in VSCode
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