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 37 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 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)
    R Offline
    R Offline
    Rob Grainger
    wrote on last edited by
    #19

    Linus Torvalds famously remarked that his two large open source projects were named after himself ;-)

    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)
      D Offline
      D Offline
      dazfuller
      wrote on last edited by
      #20

      Subversion, Git, Mercurial or Bazaar Try them out and see which one works best with you. If you're going to be working on Windows then I'd probably suggest Mercurial or Subversion as the 3rd party tools seem a little more mature at the moment. But then I use Bazaar, so like I said, try them out and see how you get on.

      1 Reply Last reply
      0
      • C charlieg

        Since I've been point on version control for as long as I care to remember, would you please explain your comment? Compared to VSS 6.0 (enough said), we've found SVN with Tortoise to be quite acceptable.

        Charlie Gilley You're going to tell me what I want to know, or I'm going to beat you to death in your own house. "Where liberty dwells, there is my country." B. Franklin, 1783 “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759

        D Offline
        D Offline
        dazfuller
        wrote on last edited by
        #21

        I'd be interested to know as well as I'm using Subversion for a project at the moment as well and it's fine and working beautifully?

        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)
          E Offline
          E Offline
          Eric Whitmore
          wrote on last edited by
          #22

          We have 6 developers and use SVN.

          PlutoX

          1 Reply Last reply
          0
          • Sander RosselS Sander Rossel

            Haven't heard of them before. Will keep it in mind. This is going to come in handy one day :)

            It's an OO world.

            public class Naerling : Lazy<Person>{
            public void DoWork(){ throw new NotImplementedException(); }
            }

            D Offline
            D Offline
            Darren Sim
            wrote on last edited by
            #23

            At my new place I've just set up the combination of VisualSVN server ANKHSvn (Visual Studio integration) TortoiseSVN as our source control system (4 developers), so far so good.

            1 Reply Last reply
            0
            • 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