I am working on a shopping cart which is installed locally via xampp.

The files are stored in:

D:/xampp/htdocs/cart

Now I would like to start making coding changes and design changes, but I need to keep a track of what changes i make so that I can go back and forth.

I would like to mention that I am the only developer working on the code, so i dont need any online repository. Everything is setup locally on my home computer.

how can I go that ?

UPDATE: After testing Subversion and Mercurial, i finally went with Mercurial and TortoiseHg.

link|improve this question

feedback

5 Answers

up vote 1 down vote accepted

I'd say that installing mercurial and using tortoisehg has been a really easy solution for me. Tortoise pretty much walks you through everything, holding your hand the whole way. Makes it very simple.

link|improve this answer
Ill test out both TortoiseHg and TortoiseSVN – Ibn Saeed Jul 1 '09 at 18:51
I finally settled for TortoiseHG, forgot to update here. I have been using it since 2009. Love it, its very easy. – Ibn Saeed Jun 8 '11 at 19:19
feedback

Depends on your needs, but for a single user project you probably will be happy with TortoiseSVN for Windows. It comes with shell integration and is relatively easy to use.

link|improve this answer
Ill give it a try. Any steps i need to keep in mind ? – Ibn Saeed Jul 1 '09 at 18:44
Isn't TortoiseSVN just a client? – Detect Jul 1 '09 at 18:45
I think the install routine is not much of a challenge. Maybe you need some reboot, although the setup bugs me every time I don't need those. Just create somewhere a directory for example on a backup drive call it CartSVN or whatever you like. Right click -> TortoiseSVN -> Create repository here. Now you have a repository. Go to "D:/xampp/htdocs/cart" right click -> SVN Checkout and choose the CartSVN directory. You are done! Now you only need to commit your changes on a daily basis... (btw. the hidden .svn directories are needed!) – merkuro Jul 1 '09 at 18:50
Thanks for explaining the steps. Ill try it right now and get back. – Ibn Saeed Jul 1 '09 at 18:53
I installed TortoiseSVN, but when i tried to Checkout, it did not give a option for selecting a local directory for CHeckout. it asked for URL. So i uninstalled it and installed TortoiseHg, its working fine till now. – Ibn Saeed Jul 1 '09 at 20:26
show 2 more comments
feedback

You can use git without a central server to make changes locally and keep track of them.
I've used it successfully when I was blocked by firewall rules from accessing a source control server. Of course you run the risk of the machine failing and having no backups!

link|improve this answer
All my files are stored locally, and I am the only one working on the code. How should I proceed ? Which system should I install and setup ? Any tutorials ? – Ibn Saeed Jul 1 '09 at 18:42
feedback

Use subversion. Easiest is to install Visual SVN for the server side, and then add your website's directory to source control using TortoiseSVN for the client side.

link|improve this answer
Is VisualSVN free ? So I need to install both VSN and TSVN ? – Ibn Saeed Jul 1 '09 at 18:46
feedback

First, if you really don't want to use an online repo, you'll need to install a version control server. There are many options, including SVN (http://subversion.tigris.org/) and CVS (http://www.nongnu.org/cvs/). Once you've configured that, you'll need to download a client that supports whatever server you're using.

link|improve this answer
Thanks, your explanation helped. – Ibn Saeed Jul 1 '09 at 18:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.