Create a Global gitignore
Each time you set up a project, there’s that dreaded repetitive task of creating a new .gitignore file and adding in all the same files/directories that need to be ignored. This sometimes can get pretty tedious. There are OS-generated files (like .DS_Store, Thumbs.db) or IDE-generated files (like .idea/) that will always clutter up your repository structure. You could also have dependencies like node_modules, built resources like .dll, .so or even logs …read more