Cannot see the ".gitignore" file!

Guys how can I see the “.gitignore” file? What should I do?

Glitch projects do not come with a .gitignore file by default, you will need to add a file called .gitignore just like you would add any other file.

They do ignore most dotfiles in the web editor. You can see and edit it from the terminal though.

Or if you want to get hacky, make a hardlink of it under a non-dotfile name. I did this once to edit stuff in the .data directory. Maybe it’ll work for .gitignore too.

If you did already add it, run nano .gitignore and you should be able to edit it from there.