I would like to see the .git/
folder on Visual Studio Code editor, but for some reason, it's not showing up on the sidebar where all the project folders are. I don't know if this can help you understand better the problem but this is what I get when I do a ls -la
on my directory
drwxr-xr-x .git
Check your Visual Studio Code settings, for "files.exclude
"
// Configure glob patterns for excluding files and folders. For example, the files explorer decides which files and folders to show or hide based on this setting.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
You should be able to exclude .git
, which by default is an hidden folder.
You can do so at the user-level (for all projects), or at the workspace level (just for this particular project)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With