I do some part-time web design work with some other people, and they don’t use subversion/any sort of version-control. However, I would like to. Is there some sort of system (perhaps I can use GIT on my local machine for this…?) that would let me not only keep track of my own personal versions of the files, but also the version of the file that I download from the server as well? (basically, I re-download the html/php files every time I work on them, and I want some way to automatically have the downloaded file be kept in my version control so that I’m not only keep track of the changes I make, but also the changes people finally uploaded to the server without having them directly contribute to subversion). Would GIT be appropriate for this? Or is there a better solution?
Share
Any version control system that can handle binary as well as ascii files will do. Subversion and git are popular open source choices. Both would allow you to manage you repository locally, most of the features that make git great for distributed development are not really applicable to your situation.
If you are new to version control, subversion may be easier to understand the concept of branching, only because it feels like a file copy or move command. If you’re inclined to try git, I’d say go for it. I guarantee you won’t ever wake up one night and say to yourself, “Wow, was I ever an idiot for putting all my work under revision control.”