RandyLahey
RandyLahey

Reputation: 979

What is an easy to use non command line source control?

I'm new to source control, and need a windows based, non command line source control that is easy for a beginner to use. I will use it for coldfusion, if that helps... Any suggestions? Thanks!

Upvotes: 1

Views: 81

Answers (3)

Dirk Vollmar
Dirk Vollmar

Reputation: 176159

If you are on Windows, have a look at TortoiseSVN.

Or, if you are looking for a more advanced distributed version control system, have a look at TortoiseHg, a Mercurial client with graphical user interface.

Upvotes: 3

pablo
pablo

Reputation: 6402

Easy to use, non-command line and distributed? You named it: Plastic SCM :P

  • we do have a community edition free for less than 15 users
  • it is fully distributed (ala Git, HG, but totally graphical)
  • integrated diff tools (xmerge, xdiff with refactor support)
  • integrated code review

and many more...

Upvotes: 1

Justin Summerlin
Justin Summerlin

Reputation: 5076

Most SCMs are command line based but have GUI interfaces. For Windows, SVN, Mercurial, Git and others have Tortoise GUIs that you can find by searching for Tortoise[SCM name] in Google.

Upvotes: 1

Related Questions