Visual Studio Code: .git folder/file hidden

The below steps can be followed to override the existing user setting:

  1. Menu CodePreferenceSetting
  2. Search for files.exclude
  3. Mouse over files.exclude property, click on the edit icon and then opt for the copy to settings.
  4. The above steps will add all the properties, but keep only those which need to be overridden. For this case: it should be, "files.exclude": { "**/.git": false }
  5. Close the user setting. the .git folder will automatically appear in the respective repository.

By default Visual Studio Code excludes files in a folder using the following settings:

"files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/.DS_Store": true
}

You can change your user settings or workspace settings to show the .git folder by adding these lines:

"files.exclude": {
     "**/.git": false
}