Re: [git-users] Is Git for me?

2012-10-08 Thread Robert Lockwood
Thanks to both of you, I'll investigate back up software for my machines and install Git on one of my machines and get some experience with it. We have used our cameras to: detect illegal logging in Brazil; locate lava tubes in Hawaii; map thermal pools in Yellowstone; map live, dead, and dying tr

Re: [git-users] Is Git for me?

2012-10-08 Thread Max Hodges
Yes having a version tracking system set up can serve as a recovery tool in the event of data loss, but other backup strategies have more to offer. Git as backup is likely to demand ever growing space requirements as it lacks pruning and rotation schedules. Also it depends on the user to actively p

Re: [git-users] Is Git for me?

2012-10-07 Thread Charles Manning
I think git is great for backup. Here's why: With svn etc there is a "central server". If that fails, then you are screwed. With git, all the clones have exactly the same data, including history etc. There is no "master" except by convention. If the "master server" dies, then just repopulate it f

Re: [git-users] Is Git for me?

2012-10-06 Thread Max Hodges
Git is for version tracking--most often for code, but it could also be used to track any files. Its not a backup tool and its not a deployment tool. Tracking changes to your source code is a very useful function. Sometimes during development you realize you're taken a wrong turn, and a tool like Gi