Tag Info

Hot answers tagged

10

You still need backups. Version control and backups are orthogonal concepts and should be used together, one is not a replacement for another. Yes, version control will persist the change history in the repository, but the repository itself is not protected just as any computer file is not protected. If the drive where the repository is stored dies the ...


8

There are a large number of version control systems out there, but I think that Git might be the best choice for you for a number of reasons. The biggest reason is that everything is in a single folder, you don't have to check things out to work on them or rebuild anything. You can just keep a full live copy on a pendrive and it just works. You also don't ...


7

There are two concepts in git that can help: branches and tags. Tags. Think of a tag as a name for a specific revision. Any time you want to remember a version, create a tag for it. For example, when you finish a draft, you can tag it like this: git tag first_draft When to use tags. Tags are good for marking any version that you might want to remember ...


4

Yes, you still need backups. However, the form that backup can take can vary. Version Control might include it If you are using git, then every time you "push" to an off-site repository, you have created a backup of your project in its entirety - including a catalog of your changes. This may be sufficient for your needs. In this case, you have two copies ...


1

A version control repository IS a backup. But you really should back up the respository. As always, back ups should be to a different device than the main file: a hard drive on another computer, CD, thumb drive, whatever. A backup on the same disk drive is worth something, but the most likely reason to need a backup is because the hard drive failed. For ...


1

While another answer is correct in saying that version control and backing up are orthogonal concepts, your local repository can have a remote repository synched with it to effectively provide a backup of your local history in the cloud. If you don't already have a remote repository, you can set one up on http://github.com or http://bitbucket.org. In this ...


1

As a coder and blogger ( http://create-build-execute.com ) I am using Git for version control. Actually my whole blog is run on it and I can recommend it a lot. As you are on Mac and do handle text files mostly, I'd recommend using the great github mac UI ( http://mac.github.com ) it makes it really easy to use and you don't even need any github account - ...



Only top voted, non community-wiki answers of a minimum length are eligible