I am trying Visual Studio Code at this moment. Everything about Visual Studio Code look really cool to me except one thing: .git folder/file is hidden in Visual Studio C
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
}