I have a project that is almost finished but needs some tweaks that I first test on local machine. I am wondering apart from using git or uploading new files through ftp, what is the best way to keep the production update with the least hassle?
-
"Without using the best way to do it". Why?Daniel Roseman– Daniel Roseman2015-01-10 11:01:00 +00:00Commented Jan 10, 2015 at 11:01
-
@DanielRoseman Just to avoid buying a private git, as a public one is not an option :)supermario– supermario2015-01-10 11:31:42 +00:00Commented Jan 10, 2015 at 11:31
-
BitBucket is free as @catavaran states, or use rsync as he also suggestswarath-coder– warath-coder2015-01-10 13:46:08 +00:00Commented Jan 10, 2015 at 13:46
Add a comment
|
2 Answers
If you just want to avoid buying a private git then use BitBucket. They offer private repositories for free.
Comments
Use rsync to mirror project files from you local machine to server.
1 Comment
supermario
Well, rsync is a powerful tool to sync. However I was wondering if there is some python-specific and perhaps more handy tool.