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. What would you recommend as a free source code control system

What would you recommend as a free source code control system

Scheduled Pinned Locked Moved The Lounge
33 Posts 24 Posters 64 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.
  • G gavindon

    would I be correct in assuming that visualSVN is the visual studio plugin?

    Let's face it, after Monday and Tuesday, even the calendar says WTF! Be careful which toes you step on today, they might be connected to the foot that kicks your butt tomorrow. You can't scare me, I have children.

    M Offline
    M Offline
    Matthew Dennis
    wrote on last edited by
    #24

    You can also use the Ankh SVN plugin for Visual Studio. Its free, and I like it better than Visual SVN's plugin. You still need a server. Visual SVN also has the server part, which we use here at The CodeProject. Matthew

    B G 2 Replies Last reply
    0
    • G GuyThiebaut

      I am starting to work on making one of the projects I have been working on open source. What would you recommend as a free source code control/vaulting system- the system does not need to be an online system. (I saw some years back, in the lounge, someone recommended subversion) Thanks in advance

      Continuous effort - not strength or intelligence - is the key to unlocking our potential.(Winston Churchill)
      M Offline
      M Offline
      Matthew Dennis
      wrote on last edited by
      #25

      There is a free SVN book at http://svnbook.red-bean.com/[^]

      1 Reply Last reply
      0
      • G GuyThiebaut

        Thanks all for your responses - I have decided to go for GIT (and that's not just because I am one...) - I had a look at the GIT Extensions for Windows and it should do what I want.

        Continuous effort - not strength or intelligence - is the key to unlocking our potential.(Winston Churchill)
        N Offline
        N Offline
        Naruki 0
        wrote on last edited by
        #26

        Keep in mind that GIT will require a slight change in the way you think about source code control systems. One biggie is that every local repository... is a first class repository. It can be made to track a remote one, but all your commits go local and you need to push your local to the tracked remote. I used TortoiseGIT for a while until I got used to the command line, and now I only go back to the GUI when I absolutely have to. (And I never used command line for Subversion because I usually prefer GUIs.)

        Narf.

        1 Reply Last reply
        0
        • M Matthew Dennis

          You can also use the Ankh SVN plugin for Visual Studio. Its free, and I like it better than Visual SVN's plugin. You still need a server. Visual SVN also has the server part, which we use here at The CodeProject. Matthew

          B Offline
          B Offline
          Bogdan Zamfir
          wrote on last edited by
          #27

          On server side, you can use also CollabNet SVN Server. I used VisualSVN server before, and then I switched to CollabNet because it has a web-based admin interface (so you can easily use it remotely). With VisualSVN free server, you need to RDP on server to manage the server. If that's a not an issue, VisualSVN server is easier to use (especially in regard of users / groups management and control access) And about client, TortoiseSVN (for Explorer access / integration) and AnkhSVN (for VS integration) will do just fine.

          Bogdan Zamfir Independent Software Developer http://www.zbconsulting.eu

          1 Reply Last reply
          0
          • G GuyThiebaut

            Thanks all for your responses - I have decided to go for GIT (and that's not just because I am one...) - I had a look at the GIT Extensions for Windows and it should do what I want.

            Continuous effort - not strength or intelligence - is the key to unlocking our potential.(Winston Churchill)
            B Offline
            B Offline
            Bartosz Bielecki
            wrote on last edited by
            #28

            Definitely Mercurial (TortoiseHg) - way easier to work than with SVN (especially locally) and I have to say it's more intuitive than Git even if they are based on roughly the same concepts.

            1 Reply Last reply
            0
            • G GuyThiebaut

              I am starting to work on making one of the projects I have been working on open source. What would you recommend as a free source code control/vaulting system- the system does not need to be an online system. (I saw some years back, in the lounge, someone recommended subversion) Thanks in advance

              Continuous effort - not strength or intelligence - is the key to unlocking our potential.(Winston Churchill)
              M Offline
              M Offline
              Mohsen Sajjadi
              wrote on last edited by
              #29

              VisualSVN for subversion server TortoiseSVN for client side AnkhSVN for Visual Studio Integration

              1 Reply Last reply
              0
              • G GuyThiebaut

                I am starting to work on making one of the projects I have been working on open source. What would you recommend as a free source code control/vaulting system- the system does not need to be an online system. (I saw some years back, in the lounge, someone recommended subversion) Thanks in advance

                Continuous effort - not strength or intelligence - is the key to unlocking our potential.(Winston Churchill)
                T Offline
                T Offline
                Terry gilman
                wrote on last edited by
                #30

                Perforce is free for up to two users.

                1 Reply Last reply
                0
                • C Chris Maunder

                  I'll save you wading through the answers: Subversion, Git or Mercurial. We use TortoiseSVN with VisualSVN.

                  cheers, Chris Maunder The Code Project | Co-founder Microsoft C++ MVP

                  G Offline
                  G Offline
                  GuyThiebaut
                  wrote on last edited by
                  #31

                  You were right about the number of answers :laugh: thanks for the three suggestions:thumbsup:

                  Continuous effort - not strength or intelligence - is the key to unlocking our potential.(Winston Churchill)
                  1 Reply Last reply
                  0
                  • G GuyThiebaut

                    I am starting to work on making one of the projects I have been working on open source. What would you recommend as a free source code control/vaulting system- the system does not need to be an online system. (I saw some years back, in the lounge, someone recommended subversion) Thanks in advance

                    Continuous effort - not strength or intelligence - is the key to unlocking our potential.(Winston Churchill)
                    Y Offline
                    Y Offline
                    Yisman2
                    wrote on last edited by
                    #32

                    im using svn for about a year and extremely happy

                    1 Reply Last reply
                    0
                    • M Matthew Dennis

                      You can also use the Ankh SVN plugin for Visual Studio. Its free, and I like it better than Visual SVN's plugin. You still need a server. Visual SVN also has the server part, which we use here at The CodeProject. Matthew

                      G Offline
                      G Offline
                      gavindon
                      wrote on last edited by
                      #33

                      server is no problem, I am top dog and have free reign to a point at least. I can set up a server .

                      Let's face it, after Monday and Tuesday, even the calendar says WTF! Be careful which toes you step on today, they might be connected to the foot that kicks your butt tomorrow. You can't scare me, I have children.

                      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