Is there a good tutorial where I can learn using Git and Dropbox together effectively?
|
|
I think that Git on Dropbox is great. I use it all of the time. I have multiple computers (two at home and one at work) that I use Dropbox as a central bare repository. Since I don't want to host it on a public service, and I don't have access to a server that I can always ssh to, Dropbox takes care of this by syncing (very quickly) in the background. Setup is something like this:
From there, you can just clone I wrote a blog post, On Version Control, (old link) on my reasoning and how I set up my environment, it's based on my Ruby on Rails development experience, but it can be applied to anything, really. |
|||||||||||||||||||||
|
|
This answer is based on Mercurial experience, not Git, but this experience says using Dropbox this way is asking for corrupt repositories if there's even a chance that you'll be updating the same Dropbox-based repository from different machines at various times (Mac, Unix, Windows in my case). I don't have a complete list of the things that can go wrong, but here's a specific example that bit me. Each machine has its own notion of line-ending characters and how upper/lower case characters are handled in file names. Dropbox and Git/Mercurial handle this slightly differently (I don't recall the exact differences). If Dropbox updates the repository behind Git/Mercurial's back, presto, broken repository. This happens immediately and invisibly, so you don't even know your repository is broken until you try to recover something from it. After digging out from one mess doing things this way, I've been using the following recipe with great success and no sign of problems. Simply move your repository out of Dropbox. Use Dropbox for everything else; documentation, JAR files, anything you please. And use GitHub (Git) or Bitbucket (Mercurial) to manage the repository itself. Both are free so this adds nothing to the costs, and each tool now plays to its strengths. Running Git/Mercurial on top of Dropbox adds nothing except risk. Don't do it. |
|||||||||||||
|
|
I didn't want to put all my projects under one Git repository, nor did I want to go in and run this code for every single project, so I made a Bash script that will automate the process. You can use it on one or multiple directories - so it can do the code in this post for you or it can do it on multiple projects at once.
|
||||
|
|
|
I don't think that using Git and Dropbox is the way to go... Just think about the features of both: Git:
Dropbox:
And if you're worried with sharing some of your files, why not cipher them? And then you could get the biggest advantage of Dropbox to Git, that is, to have public and private files... |
|||||||||||||
|
|
I've been using Mercurial in the recommended manner and urge that you be cautious, especially if any of the machines differ. The Dropbox fora are full of complaints of mysterious filename case problems turning up spontaneously. Hg (and I presume Git) won't notice or complain during routine checkins and you'll only hear about the corruption when it complains of a corrupt repo when you try to use it for real. Bad news. Wish I could be more specific about the problem and its workarounds; I'm still trying to dig out from this mess myself. |
|||
|
We use this method (creating a bare repository in Dropbox) on a share folder. A small group of developers can pull from that bare synced repository and create a local clone. Once the unit of work is done, we push back to origin. One thing I'm missing is a good way to have an e-mail sent with the change-set information once a push to origin occurs. We are using Google Wave to manually keep track of changes. |
|||||
|
|
With regards to small teams using Dropbox: If each developer has their own writable bare repository on Dropbox, which is pull only to other developers, then this facilitates code sharing with no risk of corruption! Then if you want a centralized 'mainline', you can have one developer manage all the pushes to it from their own repo. |
|||
|
|
|
Rob Conery posted a good step-by-step tutorial on setting this up, Simple Deployment using Git (or Mercurial) and Dropbox. |
||||
|
|
|
There's also an open source project (a collection of cross platform [Linux, Mac, Win] scripts) that does all the nitty-gritty details of the repository management with a handful (3-4) of commands. https://github.com/karalabe/gitbox/wiki Sample usage is:
After which normal git usage:
Check the project wiki and the manuals for full command reference and tutorials. |
|||
|
|
|
I love the answer by Dan McNevin! I'm using Git and Dropbox together too now, and I'm using several aliases in my .bash_profile so my workflow looks like this:
These are my aliases:
|
||||
|
|
|
I store my non-Github repo's on Dropbox. One caveat I ran into was syncing after a reinstall. Dropbox will download the smallest files first before moving to the larger ones. Not an issue if you start at night and come back after the weekend :-) My thread - http://forums.dropbox.com/topic.php?id=29984&replies=6 |
|||
|
|
|
You can try - https://github.com/torifat/git-dropbox It's very simple compared to other efforts. And, also do exactly what @Dan McNevin said. |
|||
|
|
|
I have faced a similar issue and have created a small script for the same. The idea is to use Dropbox with Git as simply as possible. Currently, I have quickly implemented Ruby code, and I will soon add more. The script is accessible at |
||||
|
|