I'm a web developer. My company has a dev server that all of us work directly on. There's only 3 of us, all working on different projects, so there's no issue with people overwriting each other's work. Because we're so small, no one has set up any kind of version control, and I'm not in a position to insist on it for all of us. However, I recently broke some of my own code and can't get it working again, and this makes me want to set up some kind of version control.
Here's how I'd like this to work:
- Make a local copy of my project that exists on the dev server.
- Make changes on the dev server.
- After every major change, commit to my local copy.
- If the new change broke the code on the dev server, be able to grab the previous version from the local copy.
Because I'm frequently working in 6 or more files at a time, it's not feasible for me to just manually create backups of each file before making any changes.
I've looked at GitBox and Versions, but am unable to tell if either of them will allow me to make a local copy of a remote project that isn't using some kind of version control.
Does anyone have suggestions for a good GUI version control system for Macs that will let me accomplish what I've outlined above? (The main issue is step #1 - making a local copy of a project that isn't already using a version control system and being able to update the local copy with a single action.)