up vote 249 down vote favorite
321
share [g+] share [fb]

Is there a good tutorial where I can learn using git+dropbox together effectively?

link|improve this question

79% accept rate
feedback

13 Answers

up vote 457 down vote accepted

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:

~/project $ git init
~/project $ git add .
~/project $ git commit -m "first commit"
~/project $ cd ~/Dropbox/git

~/Dropbox/git $ mkdir project.git
~/Dropbox/git $ cd project.git
~/Dropbox/git $ git init --bare
~/Dropbox/git $ cd ~/project

~/project $ git remote add origin ~/Dropbox/git/project.git
~/project $ git push origin master

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.

link|improve this answer
16  
I wonder what'll happen if you push to the dropbox bare repo from two machines at the same time. If it'll cause a modification in one of git's internal files, dropbox will show you there's a conflict -- but what do you do then? Just pick one of the versions, and then push again from both machines (one by one)? – dubek May 13 '10 at 11:12
26  
@dubek: You'll probably end up corrupting the shared bare repo. This approach is only suitable for a small team (two in my case) where people can just shout over their cubicle walls: "Hey! Nobody push! I'm pushing now!". – Ates Goral Sep 13 '10 at 20:04
13  
@Ates: At least git is decentralized, so if you manage to corrupt things you can restore it from someone's local copy. If you have a big team, chances are that there's enough cash for a hosted repo somewhere. – rdrey Oct 21 '10 at 5:37
10  
I have come back to this page more than five times to use this exact sequence of commands. I'll never memorize them, but thanks for providing them! – Mutewinter Dec 1 '10 at 23:17
20  
I really hope this is a joke. – Kenneth Reitz Feb 17 '11 at 6:33
show 13 more comments
feedback

Dropbox already retains old versions of files, so it makes for a weird match with git.

link|improve this answer
3  
@yar Some of both. Even objects, although immutable, can move from loose to packed format or become garbage to be deleted entirely. Other metadata files such as $GIT_DIR/refs/heads/master change with every commit. – Greg Bacon Feb 4 '10 at 14:01
1  
Wow. That's very informative and would make dropbox terrible for sharing. I wrote a question on this today. stackoverflow.com/questions/2199637 – Yar Feb 4 '10 at 14:25
8  
But the motive is to use Dropbox as a "network share on steroids". Dropbox already having change history is a moot point. – Ates Goral Sep 13 '10 at 20:00
2  
Git already versions the history itself, so now you're retaining a history of the history of the history. Not that it'll make much of a difference storage-wise (and Dropbox forgets old versions pretty quickly anyway, I think). Tl;dr: Don't worry about that. – Jo Liss Feb 18 '11 at 1:32
3  
Versionception, we need to go deeper. PS, Sorry. – Lukasz Jun 28 '11 at 2:12
show 4 more comments
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.

#!/bin/sh
# Script by Eli Delventhal
# Creates git projects for file folders by making the origin Dropbox. You will need to install Dropbox for this to work.

# Not enough params, show help.
if [ $# -lt 1 ] ; then

cat<<HELP
projects_to_git.sh -- takes a project folder and creates a git repository for it on dropbox

USAGE:
    ./projects_to_git.sh file1 file2 ..

EXAMPLES:
    ./projects_to_git.sh path/to/MyProjectDir
        Creates a git project called MyProjectDir on Dropbox

    ./projects_to_git.sh path/to/workspace/*
        Creates a git project on Dropbox for every folder contained within the workspace directory, where the project name matches the folder name

HELP
    exit 0
fi

# We have enough params, so let's actually do this thing.

START_DIR=$(pwd)

# Make sure we have connection to Dropbox
cd ~
if [ -s 'Dropbox' ] ; then
    echo "Found Dropbox directory."
    cd Dropbox
    if [ -s 'git' ] ; then
        echo "    Dropbox git directory found."
    else
        echo "    Dropbox git directory created."
        mkdir git
    fi
else
    echo "You do not have a Dropbox folder at ~/Dropbox! Install Dropbox. Aborting..."
    exit 0
fi

# Process all directories matching the passed params.
echo "Starting processing for all files..."
for PROJ in $*
do
    if [ -d $PROJ ] ; then
        PROJNAME=$(basename $PROJ)
        echo "  Processing $PROJNAME..."

        # Enable git with this project.
        cd $PROJ
        if [ -s '.git' ] ; then
            echo "    $PROJNAME is already a git repository, ignoring..."
        else
            echo "    Initializing git for $PROJNAME..."
            git init -q
            git add .
            git commit -m "Initial creation of project." -q

            # Make the origin Dropbox.

            cd ~/Dropbox/git
            if [ -s $PROJNAME ] ; then
                echo "    Warning! $PROJNAME already exists in git! Ignoring..."
            else
                echo "    Putting $PROJNAME project on Dropbox..."
                mkdir $PROJNAME
                cd $PROJNAME
                git init -q --bare
            fi

            # Link the project to the origin
            echo "    Copying local $PROJNAME to Dropbox..."
            cd $PROJ
            git remote add origin "~/Dropbox/git/$PROJNAME"
            git push -q origin master
            git branch --set-upstream master origin/master
        fi
    fi
done

echo "Done processing all files."
cd $START_DIR
link|improve this answer
feedback

I don't think that using git and dropbox is the way to go... Just think about the features of both:

Git:

  • Allows you to have a central repository;
  • Allows you to have your own repository with your own changes;
  • Allows you to send and receive changes from the central repository;
  • Allows multiple persons to change the same files and them merges them or asks you to merge them if it can't do it;
  • Has web and desktop clients to allow access to the central repository;

Dropbox:

  • Keeps everything in a central repository;
  • Allows you to have your own versions of the files in the server;
  • Forces you to send and receive changes from the central repository;
  • If multiple persons change the same files, the first file committed is replaced with later commits, and no merge occurs which is troublesome; (And definitely it's biggest disadvantage)
  • Has web and desktop clients to allow access to the central repository.

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...

link|improve this answer
Dropbox is just a good option for a central repo. If placed in a shared folder it even works for groups. – mac Feb 4 '11 at 12:02
Yes, but you won't have the same merging features as in git, in fact if someone is editing the same file as yours, and he saves the file after you, your changes are lost, unless you go to the web interface and download the old version (your version). – Coyote21 Feb 5 '11 at 21:53
3  
This is wrong. Dropbox doesn't drop conflicts. It mangles the filename of one edit, and uses the other for continuity. You can manually merge them yourself if you like. It's a good compromise, and doesn't lose data. dropbox.com/help/36 – Clueless Feb 16 '11 at 19:13
Yes but since this is about code, the less time I spend merging files the more code I can produce, and in a normal codebase it can be hundreds of conflicts at one time, depending of the project dimensions, and it would be a nightmare to merge then one by one, even with the help of a merge tool like WinMerge (or something alike). – Coyote21 Feb 21 '11 at 19:03
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.

link|improve this answer
29  
Somebody's using Google Wave? – Kristopher Johnson Jul 16 '10 at 14:43
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.

link|improve this answer
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.

link|improve this answer
I feel that the git repository is robust enough not to corrupt itself. My experience (over a year of usage, mostly single-user, cross-platform, cross-computer, multiple devs), is that git's repo is not easily corrupted. In git, only information is added to the repository, existing files are left alone 99.9% of the time (mutable files are mostly easy to inspect manually). I've sometimes seen cases where a branch pointer was overwritten, but this can be easily seen (i.e. "branch (XXX's conflicted copy)") and removed (no real fixing needed, actually). – Egon Geerardyn Jan 24 at 21:36
feedback

Rob Conery posted a good step by step tutorial on setting this up.

link|improve this answer
See also Bradley Wright's tutorial. – Ron Romero Apr 1 '11 at 16:08
@Nicolás updated the link – OffBySome Nov 15 '11 at 21:09
@OffBySome: great, so I will delete my former comment! – Nicolás Nov 15 '11 at 21:18
feedback

There is another useful tutorial in this blog post.

link|improve this answer
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

link|improve this answer
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:

~/project $ git init
~/project $ git add .
~/project $ gcam "first commit"
~/project $ git-dropbox

These are my aliases:

alias gcam='git commit -a -m'
alias gpom='git push origin master'
alias gra='git remote add origin'
alias git-dropbox='TMPGP=~/Dropbox/git/$(pwd | awk -F/ '\''{print $NF}'\'').git;mkdir -p $TMPGP && (cd $TMPGP; git init --bare) && gra $TMPGP && gpom'
link|improve this answer
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:

$ gitbox create myapp
Creating empty repository...
Initializing new repository...
Repository successfully created.

$ gitbox clone myapp
Cloning repository...
Repository successfully cloned.

After which normal git usage:

$ echo “Some change” > somefile.txt
$ git add somefile.txt
$ git commit –m “Created some file”
$ git push

Check the project wiki and the manuals for full command reference and tutorials.

link|improve this answer
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.

link|improve this answer
9  
Yes, however, version control can never be an excuse for not keeping backups. – Alan Haggai Alavi Dec 25 '09 at 10:17
2  
And vice versa. – Josh Lee Dec 25 '09 at 17:34
@jleedev: Absolutely. – Alan Haggai Alavi Dec 25 '09 at 18:30
5  
Dropbox gives you 1) instant backups on Amazon S3 2) access from multiple computers regardless of firewalls. It's a lot more than just "cool drag and drop". If you don't see a need to use git over Dropbox, you probably haven't tried using git over Dropbox. – Ates Goral Sep 13 '10 at 20:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.