|
|
|
|
|
by potatolicious
6458 days ago
|
|
I use a combination of git and Subversion. SVN for the main repo that is shared between developers (with many developers working at once the lack of atomic commits really sucks), and git as my own offline versioning system. The code that I write tends to go through several iterations, and I'm loathe to commit anything to SVN until things work well enough to please me. Bad code should never make it into your prod repo, but I'm not a fan of rewriting/deleting mass chunks of code without SCM to back me up. |
|
My current offline version control system has been leaving all the files open in TextMate to take advantage of undo/redo. (Horrible I know).