Guest User

Untitled

a guest
Jun 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #----------------------------------------------------------------------------
  2. # Git Setup
  3. #----------------------------------------------------------------------------
  4. file '.gitignore', <<-FILE
  5. .DS_Store
  6. log/*.log
  7. tmp/**/*
  8. config/database.yml
  9. db/*.sqlite3
  10. public/uploads/*
  11. gems/*
  12. !gems/cache
  13. !gems/bundler
  14. FILE
  15.  
  16. git :init
  17. git :submodule => "init"
  18. git :add => '.'
  19. git :commit => "-a -m 'Initial commit'"
Add Comment
Please, Sign In to add comment