Is there a good tutorial where I can learn using git+dropbox together effectively?
|
feedback
|
|
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 repo. 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 ~/Dropbox/git/project.git that you have associated with your dropbox account (or have shared this dir with people), you can do all the normal git operations and they will be synced to all your other machines automatically. I wrote a blog post on my reasoning and how I set up my environment, it's based on my Rails development experience, but can be applied to anything, really. | |||||||||||||||||||||
feedback
|
|
Dropbox already retains old versions of files, so it makes for a weird match with git. | |||||||||||||||||||||
feedback
|
|
I didn't want to put all my projects under one git repo, 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.
| ||||
|
feedback
|
|
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 your worried with sharing some of your files, why not cipher them? And them you could get the biggest advantage of dropbox to git, that is to have public and private files... | |||||||||||
feedback
|
|
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. | |||||
feedback
|
|
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. | |||
|
feedback
|
|
This answer is based on hg 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/Hg handle this slightly differently (I don't recall the exact differences). If Dropbox updates the repository behind Git/Hg'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, jars, anything you please. And use github (git) or bitbucket (hg) 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/hg on top of Dropbox adds nothing except risk. Don't do it. | ||||
feedback
|
|
Rob Conery posted a good step by step tutorial on setting this up. | |||||||
|
feedback
|
|
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 | |||
|
feedback
|
|
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:
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
Git is used for distributed version control. Dropbox is more of a filesync. I think if you can use git, then you dont need to use Dropbox other than for its cool drag and drop features. I don't really see a use for putting a git repository in a dropbox folder, other than for maybe working on the same code base and origin using two different systems. | |||||||||||||||
feedback
|