Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Code: .git folder/file hidden

People also ask

Where are .git hidden files?

Use the terminal to display the . git directory with the command ls -a . The ls command lists the current directory contents and by default will not show hidden files. If you pass it the -a flag, it will display hidden files.

Why can't I see my .git folder?

The . git folder is hidden to prevent accidental deletion or modification of the folder. The version history of the code base will be lost if this folder is deleted. This means, we will not be able to rollback changes made to the code in future.

How do I unhide a folder in Visual Studio?

Put the folders into the bin (folder) > Debug or Release folder in your project folder. 3). Open your project in Visual Studio > click the Show All Files button > expand the bin , Debug > select and right-click the parent folder > choose Include in Project option. 4).


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
}

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.

The settings for Visual Studio Code can be found:

  • On a Windows or Linux computer, click menu FilePreferencesSettings
  • On a Mac, click menu CodePreferencesSettings

There are both users settings (for everyone) and workspace settings for individual projects.

More instructions can be found at: User and Workspace Settings


If you want to configure vscode to show .git directory, you need to settings in vscode by (cmd + ,) or (ctrl + ,). If you do it you will see a search bar, type "Files: Exclude" , when you see the top result just hover over the .git row and you will see a close icon or a delete icon. Click on that. After you click on that done! Now you will be able to see the .git directory in the vscode explorer.