The commands provided on the Import/Export page works, but then you
lose all your logs and tmp directory locally.
This alternative worked for me on mac:
tar czf myapp.tar.gz --exclude={log/*,tmp/*} myapp/
Wanna see if any of the tmp files made it in?
gunzip -cf myapp.tar.gz | tar -tv | grep 'myapp/tmp'
This unzips to standard out, sends it tar to just display files in the
zip and greps just for the directory we want to see empty
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Heroku" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/heroku?hl=en
-~----------~----~----~----~------~----~------~--~---