0

I want to push a NodeJs 'fullstack application to Heroku. That also works wonderfully. Only, it takes a very long time. I put a .gitignore file in the main directory, which is ignored when uploading.

enter image description here

This is how my gitignore looks:

 ### react ###
.DS_*
*.log
logs
**/*.backup.*
**/*.back.*

node_modules/*
bower_components

*.sublime*

psd
thumb
sketch
Captai-N
  • 1,124
  • 3
  • 15
  • 26

1 Answers1

1

If you have committed those files before adding gitignore, entries in gitignore will not affect. to fix you can remove those files and commit again. then gitignore will be available to ignore files

Farhad
  • 131
  • 1
  • 1
  • 7