Dropbox vs Git
$ cd ~/Dropbox/Git
$ git init --bare mytestrepo.git
$ cd ~
$ mkdir testrepo
$ cd testrepo
$ git init
$ git remote add origin ~/Dropbox/Git/mytestrepo.git
$ git push -u origin master
$ git clone ~/Dropbox/Git/mytestrepo.git testrepo2
Dropbox vs Git
$ cd ~/Dropbox/Git
$ git init --bare mytestrepo.git
$ cd ~
$ mkdir testrepo
$ cd testrepo
$ git init
$ git remote add origin ~/Dropbox/Git/mytestrepo.git
$ git push -u origin master
$ git clone ~/Dropbox/Git/mytestrepo.git testrepo2