Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Version Control System

Version Control System

Scheduled Pinned Locked Moved The Lounge
c++sysadmincollaborationquestionannouncement
25 Posts 20 Posters 2 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Monty2

    what are the various Version Control Systems available for Windows? we used SourceSafe but its hardly what we need, we need a Client server model which can work over internet as well CVS would have been perfect but they say CVS is buggy on windows :( Any Suggestions guys ? C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do, it blows away your whole leg

    P Offline
    P Offline
    Paul Watson
    wrote on last edited by
    #21

    I second the Subversion and TortoiseSVN recommendation. regards, Paul Watson Bluegrass South Africa Chris Maunder wrote: "I'd rather cover myself in honey and lie on an ant's nest than commit myself to it publicly." Jon Sagara replied: "I think we've all been in that situation before." Crikey! ain't life grand?

    1 Reply Last reply
    0
    • O Okeno Palmer

      Subversion[^] is a wonderful product. You should give it a try. The whole idea behind subversion is to make a revision system that addresses all the shortcomings of CVS. It works quite well on Windows as that is what I use it on right now. There are also several tools I have found that make the experience of using Subversion quite good. TortoiseSVN[^] is a Shell extension that allows you to work with subversion from Windows Explorer. A great graphical interface that allows you to see immediately what files have been modified, deleted, or added without having to run any subversion commans yourself Trac[^] is a new one I just found that gives you the ability to use a Wiki, Issue Management (i.e. bug tracking), and Subversion Browser. This is web based tool. An example of how I use it is that if I have a new project i want to put under source control, I would create a Subversion repository for it, then setup Trac to use with this repos. After I do that, I can use the Wiki system to basically create a project site with all information realated to this project being available on the web and easily editable by any of my peers directly from the web. Then I can use the Issue Tracking system to keep a log of all the bugs, feature requests that users and developers may have for that project as it grows. The Subversion browser will allow me to view my source directly from the web and also see diffs of the various revisions. I could go on but I think you would prefer checking these out yourself :-D I forgot to mention these tools are Open Source, no price tag .:. Keno .:.

      R Offline
      R Offline
      Radoslav Bielik
      wrote on last edited by
      #22

      Hey, thanks for this post! :) I've been looking for some open source or free (we're on a low budget right now) issue tracking system for some time and didn't really like anything that I've found so far. I've been evaluating and partly using Gemini[^], which is free for internal use for up to 10 users I think. It's written in .NET and uses MS SQL 2000, but the UI is not too "intelligent". I was looking at Trac, as it looks really really nice, but the installation procedure prevents me from evaluating it. :) Although the WIndows installer is available, there are so many steps to do to make it work that I didn't have time to try it yet. The installation of Gemini was flawless and quick when compared to this. Are you using the Trac and Subversion on a Windows server? Did you manage to make the Trac work with IIS or is Apache required? I have already installed Python but that's all. :) Thanks for any suggestions in advance! Rado


      Radoslav Bielik http://www.neomyz.com/poll [^] - Get your own web poll

      O 1 Reply Last reply
      0
      • M Monty2

        what are the various Version Control Systems available for Windows? we used SourceSafe but its hardly what we need, we need a Client server model which can work over internet as well CVS would have been perfect but they say CVS is buggy on windows :( Any Suggestions guys ? C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do, it blows away your whole leg

        B Offline
        B Offline
        Bassam Abdul Baki
        wrote on last edited by
        #23

        Try Code Co-op. http://www.relisoft.com/co\_op/index.htm

        1 Reply Last reply
        0
        • R Radoslav Bielik

          Hey, thanks for this post! :) I've been looking for some open source or free (we're on a low budget right now) issue tracking system for some time and didn't really like anything that I've found so far. I've been evaluating and partly using Gemini[^], which is free for internal use for up to 10 users I think. It's written in .NET and uses MS SQL 2000, but the UI is not too "intelligent". I was looking at Trac, as it looks really really nice, but the installation procedure prevents me from evaluating it. :) Although the WIndows installer is available, there are so many steps to do to make it work that I didn't have time to try it yet. The installation of Gemini was flawless and quick when compared to this. Are you using the Trac and Subversion on a Windows server? Did you manage to make the Trac work with IIS or is Apache required? I have already installed Python but that's all. :) Thanks for any suggestions in advance! Rado


          Radoslav Bielik http://www.neomyz.com/poll [^] - Get your own web poll

          O Offline
          O Offline
          Okeno Palmer
          wrote on last edited by
          #24

          I have Trac up and running fully on Windows and can give you the steps to install it :) I am actually gonna install it at work today and get my dev team to start using it. I did try IIS 5.1 but it bombed on me and messed up my COM+ Catalog. When I tried to re-install COM+ I had major issues. The root of the problem was that IIS seem to have some pooling issues when it was processing the CGI scripts. In any case, I installed Apache2 and am now up and running. To get a smooth install, I would recommend the Trac 0.7 (just released last week), Apache2, and Python 2.3. They use SQLLite (also Open source) as their DB back-end. There were some issues with it in earlier releases but that is now smoothed out it would seem and working well. If you want some help with the windows install, you can drop me an email and I will see what we can work out. .:. Keno .:.

          J 1 Reply Last reply
          0
          • O Okeno Palmer

            I have Trac up and running fully on Windows and can give you the steps to install it :) I am actually gonna install it at work today and get my dev team to start using it. I did try IIS 5.1 but it bombed on me and messed up my COM+ Catalog. When I tried to re-install COM+ I had major issues. The root of the problem was that IIS seem to have some pooling issues when it was processing the CGI scripts. In any case, I installed Apache2 and am now up and running. To get a smooth install, I would recommend the Trac 0.7 (just released last week), Apache2, and Python 2.3. They use SQLLite (also Open source) as their DB back-end. There were some issues with it in earlier releases but that is now smoothed out it would seem and working well. If you want some help with the windows install, you can drop me an email and I will see what we can work out. .:. Keno .:.

            J Offline
            J Offline
            Jim Crafton
            wrote on last edited by
            #25

            Sounds like this would make an interesting article! ¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups