Try Mercurial. It's as simple to get started as cd
ing into your code's folder and typing hg init
. Once the repository has been initialized, you can add everything with hg add
, and then commit with hg commit -m "Initial commit."
or something like that. There's also a really great tutorial at hginit.com.