IMG-LOGO

How to get GIT author information in Visual Studio Code

andy - 15 Jul, 2021 7734 Views 0 Comment

If you need to get the GIT author information in Visual Studio Code. You can open a terminal and run the following command.

To get the author's name. You can run the following code.

git config --global user.name

To get the author's email. You can run the following code.

git config --global user.email

See the following screenshot taken from Visual Studio Code terminal.

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles