Yes, I know it is not it's intended purpose. But did anyone use Dropbox as source control for a 1 programmer project?
Insights and conclusions here
|
Yes, I know it is not it's intended purpose. But did anyone use Dropbox as source control for a 1 programmer project? Insights and conclusions here |
|||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I've personally settled on Git coupled with DropBox for my personal projects, Dropbox for the accessibility of the code and Git for the versionning. Here are my feelings about it: Dropbox is not a code source control system It allows to roll back a file, but not to roll back a complete tree structure. Unfortunately, when I perform changes, there is more often than not more than one file impacted so I ended up having a lot of inconsistencies and needing to keep track of what the dependencies were e.g. Dropbox cannot act as a source code control (it could be used for document source control though). Dropbox alone calls for inconsistencies Dropbox works as a constant observer on a defined folder. Thus whenever you save a file, it will be uploaded (provided the service is running). I work mostly alone on my projects, but I have some "observers" that normally do not participate (commit), only observe and comment. For them it meant that their Dropbox view was constantly updating and there was no guarantee that the current view they have is consistent. Dropbox is a nice remote repository Dropbox is really good at keeping synchronization between folders. Using dropbox as a repository I can access my code anywhere as long as it can access internet. No need for installation of a git service on a server or finding a hosting service that would be allowed through firewalls and proxies where I work. Git & Dropbox setup Git is very easy to setup and works perfectly fine as a source control system. I set up the master repository on Dropbox and work on local repositories all the time. I regularly perform pushes to the master and only then Dropbox syncs what there is to update, maintaining the consistency for my observers. Foreseen Limitations So far I haven't experienced any particular limitations but I know the following could happen. In case of "concurrent offline pushes", you would have to merge the Dropbox conflicts manually once online again. But I don't see this happening for me soon since I'm the only one performing pushes on the projects and I have not reached ubiquity yet :) Trouble would also be expected in case of an heterogeneous use of machines (due to the way files are managed by the Operating Systems) but I've been using windows only until now. Conclusion Sofar so good :) |
|||
|
|
|
It would work for small single-person projects, yes. Problems
As you can see, it would be a nightmare using Dropbox for version control. There are many little things you probably don't notice while using a VCS that have been carefully designed. (Well, in the case of Mercurial, anyways. ;)) Theoretically, you could implement a layer on top of Dropbox for managing all these problems for you... but why wouldn't you use an existing superior VCS instead, then? SolutionYou should use TortoiseHg if you want simple, easy revision control. It is a lot better than using Dropbox, after you get over the initial laziness of clicking three times to create a new repository. You can put the repository in Dropbox or |
||||
|
I have not personally used Dropbox, but I've heard from others that have that it wasn't their favorite tool. I recommend trying it for yourself rather than taking my opinion, but I do have some other suggestions. If you feel adventurous, I would take a look at Hg Mercurial or Tortoise Subversion. Both are excellent for source control and it is well worth the effort to learn how to use them. Tortoise SVN: http://tortoisesvn.net/ Hg Mercurial: http://mercurial.selenic.com/ Good luck!! |
|||
|
|
|
I personally have used Dropbox as a source control and project management system of sorts for a couple of projects. Not only for personal projects of my own, but also when developing with another programmer and collaborating as well. This works really well if you're not editing or working on the same files. But as you state for a 1 programmer project Dropbox should be more than fine for your uses! I thought it was a great way to keep my project stored off my hard-drive in case any issues occurred with my computer. |
|||
|
|
|
I work alone on small projects. I use a few different machines, mostly Windows, one Linux (I'm a Linux noob.) I used to struggle with different versions in different places. What I don't like about Virtual Machine solutions, is (1) that's it's all too easy to get confused with different versions of a given project and (2) that you have more machines on than strictly necessary. The power they consume is not big money, but hey, why waste energy? So then I started using dropbox. Whatever machine I work on, I always work in the same version. So that's nice. There is one quirk with working in Dropbox I find worth mentioning: |
|||
|
|
|
I used to do exactly this. It was handy until I had to pull a previous version, but I wasn't sure which one. I had to download several different versions of the file and manually diff each one till I found what I was looking for. I recently switched to Mercurial, and it's much better. I'm still very, very new to it, but immediately it was of benefit just from being able to comment the commits and branch experimental features. And I still have the whole codebase in my Dropbox, which I use as a lazy man's backup. Since HG/Git are just files on the filesystem, it just works. |
|||
|
|
|
My tip is to commit by zipping your source into a Dropbox zip file - assuming it's not too large - this allows you an easy rollback on version. I use Dropbox happily for single programmer, no other viewer, code backup and (very simple - oops type) versioning between multiple devices (two android and pc). It works mostly well - apart from occasionally overwriting from AIDE - it's best to close the project before syncing. I did have some issue with Eclipse and AIDE being confused over the R.java file at first - but it works fine when you stop regenerating it :( Best wishes Andy S |
|||
|
|