Version control

Add .gitignore file and add the following:

  1. # OS generated files
  2. ####################
  3. .DS_Store
  4. .DS_Store?
  5. ._*
  6. .Spotlight-V100
  7. .Trashes
  8. ehthumbs.db
  9. Thumbs.db
  10. # Generated CSS output
  11. #######################
  12. public/stylesheets/*.css
  13. public/stylesheets/*.css.map
  14. # Package dependencies
  15. ######################
  16. node_modules/
  17. bower_components

Add in version control

  1. $ git add --all
  2. $ git commit -m "add all the things"