Live data from Hacker News

Dropbox + git

github.com

1–6 of 6 posts

Re: Dropbox + git

#3
post #2

What's the difference between this and just running git init in a Dropbox folder?

This creates a remote (in this case just another directory on your local machine) and you have to push to it, rather than your commits and changes instantly being synced to dropbox

Re: Dropbox + git

#4
post #3
post #2

What's the difference between this and just running git init in a Dropbox folder?

This creates a remote (in this case just another directory on your local machine) and you have to push to it, rather than your commits and changes instantly being synced to dropbox

^^ Exactly.

Re: Dropbox + git

#5
post #4
post #3

Earlier quoted context omitted.

This creates a remote (in this case just another directory on your local machine) and you have to push to it, rather than your commits and changes instantly being synced to dropbox

^^ Exactly.

Sorry but what would be the URL you push to?

Re: Dropbox + git

#6
post #5
post #4

Earlier quoted context omitted.

^^ Exactly.

Sorry but what would be the URL you push to?

Script should generate the URL/URI. it is basically location of your backup in dropbox folder.

You can find out the url by doing the following 1. Go to root dir (top dir) of project you are backing up 2. run following command 'git remote -v'

It should show you the location where you are going to push to