Reputation: 455
would know if there is a way to save different version of my program without using (Copy folder and Paste it to in Backup Folder).
For example if my program version is 1.0.5 and now i want make some changes(1.0.6), i want be sure that if those changes wasnt so good i could go back to 1.0.5 without copy each times the old folder.
Is there any tool that help me with this?
Upvotes: 0
Views: 71
Reputation: 5750
I think you want to look into some type of version control i'd try Subversion or Git
There are multiple free hosting sites that will host your repository of code, you might want to check out Google Code Hosting or Sourceforge.net if you don't mind your project being open source.
There are lots of resources online to learn about version control, just start Googling.
Might take a bit to setup, but once you got it running it makes things much easier to switch to different branches of code or revert changes, work from multiple computers, ect.
Upvotes: 1
Reputation: 62246
You need to use branches in your code versioning system.
An explanation which is partly a reason you're asking for:
There are tutorials for using them. These are:
Upvotes: 1