Is it safe to create a github repository and store that folder in dropbox? A bit redundant, but this is the state of my current workflow.
Asked
Active
Viewed 78 times
0
-
Check "Using Git and Dropbox together effectively" question http://stackoverflow.com/questions/1960799/using-git-and-dropbox-together-effectively/ – Michael Ver Jan 14 '14 at 05:34
1 Answers
0
It should be fine, even though it'll be redundant. I did this a few months ago, and had no problems with it. If Dropbox sync causes your local and remote repositories to diverge, you can always do a rebase / merge using Git, or look through the Dropbox history. This is because Git doesn't actively try to keep the folder in sync (like Dropbox does); only when you execute Git commands (e.g. push, pull)
-
The way I see it, I have the folder in my Dropbox to sync between my laptop and my desktop. It's a pages branch, so I don't want to have to push every little change I make as my site won't be finished yet. – ohitsanazn Jan 13 '14 at 22:12
-
You should be fine then, if you're just using Dropbox to keep your laptop and desktop in sync between commits. – kratosauron0 Jan 14 '14 at 21:06