Hyperion
Hyperion

Reputation: 1

Project versions

Do you guys know a good way to maintain projects versions.

Currently I'm just zipping the entire folder of my website each time I decide that it is new version and call it for ex. 2.0.1

Is there a better way to maintain project versions?

Thanks

Upvotes: 0

Views: 115

Answers (4)

devdigital
devdigital

Reputation: 34349

Team Foundation Server is prohibitively expensive, and I wouldn't consider Visual Source Safe at all. Alternatives are:

  1. Subversion - http://subversion.tigris.org/
  2. Git - http://git-scm.com/
  3. Mercurial - https://www.mercurial-scm.org

http://martinfowler.com/bliki/VersionControlTools.html is a nice article which may help you decide.

Upvotes: 2

Neil Knight
Neil Knight

Reputation: 48537

I would recommend looking into Team Foundation Server if you have the budget. If not, something like Tortoise SVN integrates nicely with Visual Studio and works really well. Git is also very good.

Upvotes: 1

Saif al Harthi
Saif al Harthi

Reputation: 2974

or you can use Git its free & extremely fast , you can Git Extensions , download it for extensions manager

Upvotes: 3

decyclone
decyclone

Reputation: 30830

Have you considered using a source control software like Visual Source Safe or Team Foundation Server?

They support File and Project versioning.

Upvotes: 0

Related Questions