Reputation: 30885
I'm travelling alot and I have personal projects that I need to work on during this time. Sometimes when waiting for the train at the terminal, at home, and at work. I need to keep the source versioned somehow. I don't mind installing an application on each desktop. I need a way to sync between them, maybe with Dropbox? What options do I have?
please not git hub, and not payed solution , something private. and simple
Upvotes: 1
Views: 125
Reputation: 97280
As already was mentioned - use DVCS of choice. If you don't want hosted solution (while private Bitbucket is good), you can
or
Upvotes: 1
Reputation: 1169
I realize you mentioned "source" above, but there is a rather famous article written by Joey Hess titled Keeping Your Life in Subversion. Apparently, he's still doing it even though the article is from 2005 (although he's moved to git).
There's even a mailing list for people who keep their homes in version control repositories!
Upvotes: 0
Reputation: 73748
Use a distributed version control system such as Mercurial or Git. This allows you to
Upvotes: 1
Reputation: 13410
I would take a look at using a hosted version control solution like Github or Bitbucket. You have to pay for private repos on Github, but private repos on Bitbucket are free.
Upvotes: 2