Live data from Hacker News

Ask HN: How do you back up your projects online?

news.ycombinator.com

1–8 of 8 posts

Ask HN: How do you back up your projects online?

#1
I'm interested to know how people back up their code/designs. I've been using Dropbox mainly, adding the current date to the folder name (probably not the best way to do it but it works). But whenever I change something in one or a few files I have to back up the entire project directory again or replace the older file. Plus many times I actually forget what I worked on in each copy.

Do you guys know any good tools to back up stuff online where you can iterate/collaborate with others?

Re: Ask HN: How do you back up your projects online?

#4
post #3
post #2

You should use a version control system, such as Git. http://learn.github.com/p/intro.html

I'm using git for code, but it's not an online solution nor a back-up system.

You can buy a private account from GitHub and push your git repository there.

Re: Ask HN: How do you back up your projects online?

#8
post #3
post #2

You should use a version control system, such as Git. http://learn.github.com/p/intro.html

I'm using git for code, but it's not an online solution nor a back-up system.

Setup a bare git repository in your DropBox folder and clone from it into your development folder. The DropBox folder will act as your "remote" origin. Now you can push and pull changes to it. It will physically get backed up when DropBox notices file changes.