Recommended way to keep backups of my programming projects?

Joined
Nov 24, 2015
Messages
41
Reaction score
3
As the title.

I'm getting more and more paranoid the more useful stuff I make. I think they could so easily go poof.
 
Use at least 3 different reliable sources. Not just virtual like google drive but also physical like your personal flash memory card.
 
I like drop box. I back everything onto there, everything!

GitHub is also good.
 
First of all don't listen to anyone who isnt a software developer....
As an experienced developer can tell you that you should be using version control. Then you can have as many backups of your code as you like. Use bitbucket and git. Works with pretty much all languages and IDEs.
 
I personally use dropbox & pendrive as backup of projects weekly.
 
Don't just backup your code. You need version control - this will automatically make a backup of your software. either get a server to install it on, or use an online pre-installed service...

If you ever want to work as a software developer and you tell your employer that you use dropbox for backups, they will show you the door.
 
You should already be using version control (Git/SVN etc.), whether it's with a provider (GitHub, GitBucket etc.) or on your own server (GitLab, Gogs, CLI etc.).

So your backup method would be to use multiple Git remotes.
 
Ok cool, I was advised to use this by others re version control. It sounded very complex though I avoided it :). Guess it's time to learn it.
 
As per many of the above - a private Git repo is best - that way you have offsite backups of everything + version control which makes life a heck of a lot easier.

Make sure it's a private repo - they're $10 a month on Github.

Ok cool, I was advised to use this by others re version control. It sounded very complex though I avoided it . Guess it's time to learn it.

There are plenty of graphical front ends for Git if you're scared of using the command line.
 
I've been using dropbox as my backup solution for the last 2 years.
Works great!
I pay for the 10$/month plan though. I don't know if you can stay below the amount the free plan offers.

One thing that annoys me though, is the fact that you cannot exclude certain file types from being backed up.
For instance, whenever I clean my project and recompile it, all the .dll files are getting reuploaded (which sucks).
 
As per many of the above - a private Git repo is best - that way you have offsite backups of everything + version control which makes life a heck of a lot easier.

Make sure it's a private repo - they're $10 a month on Github.



There are plenty of graphical front ends for Git if you're scared of using the command line.

No no I didn't say I'm scared of the command line. How dare you sir.

That is like saying to a body builder he's afraid of the gym.

I love the command line.

Are there any free alternatives then. I'm not paying a monthly fee for anything like this. I'm an open sourcer baby.
 
I'd go old school and back it up to a CD, DVD & a USB thumb drive.
 
Back
Top