![How to view your user credentials in Git Command Prompt](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjVCE1iUyMN8rt9_n5Qb2KPVcQAj_VYPoJae4cJ3qGoiMun-94yTdSYZOCLbDPmbtLQxgLL3Qb10b6C28Pk1U_1oFCTQqCArbNp-XCVSPC15Fv1ro1zP3cntLUUYzuivk29i2I5grJ0gYB-/s1600/View-Username-email-in-git.jpg)
You want to list all of your user details simple by type the below command.
git config --global --listIt will list all the detail of User nam, Email and Credentials etc.
Output of my system:
git config --global --list
user.email=gokulcs.gk@gmail.com
user.name=Gokulakrishnan S
credential.helper=manager
If you want to view user.name individually
Just type this command
git config --global user.nameIf you want to view user email individually
Just type this command
git config --global user.email