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. Git for Windows any suggestions

Git for Windows any suggestions

Scheduled Pinned Locked Moved The Lounge
comcollaborationhelpquestiondiscussion
32 Posts 21 Posters 5 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.
  • S Slacker007

    Bitbucket (free). Use TortoiseGit. We use it work and it is very nice. https://bitbucket.org/[^] is the repository. and https://code.google.com/p/tortoisegit/[^] is the interaction tool. Now you could just do everything via command line and forgo the Tortoise but we all find it easier and more convenient to use TortoiseGit. http://guganeshan.com/blog/setting-up-git-and-tortoisegit-with-bitbucket-step-by-step.html[^] instructions for configuration between tortoisegit and bitbucket. HTH you.

    B Offline
    B Offline
    Brady Kelly
    wrote on last edited by
    #10

    Great combo. I use them myself. As for the command line, I've just moved to Posh-Git, hosted in PowerShell. It's a lot friendlier being able to do so much more Windows stuff natively than Git Bash.

    No object is so beautiful that, under certain conditions, it will not look ugly. - Oscar Wilde

    1 Reply Last reply
    0
    • Mike HankeyM Mike Hankey

      I have a Windows 10 VM and I downloaded GitHub for Windows and TortoiseGit and of the two I like TortoiseGit better, I guess mainly because I'm so used to Tortoise. Any good beginners tutorials on GIT?

      New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

      V Offline
      V Offline
      Vladimir Svrkota
      wrote on last edited by
      #11

      I found Atlassian's tutorial the shortest and the most usefull: https://www.atlassian.com/git/tutorials/[^] There are also more in-depth tutorials: - Official Git book http://git-scm.com/book/en/v2[^] (chapters 1, 2, 3 and 5) - Lars Vogel's tutorial http://www.vogella.com/tutorials/Git/article.html[^] They are all well illustrated and have many command line examples. You don't have to worry abot command line, because (almost) everything could be done using TortoiseGit (right click -> TortoiseGit -> Commit / Pull / Push / Merge / Reset etc...)

      1 Reply Last reply
      0
      • Mike HankeyM Mike Hankey

        I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

        New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

        L Offline
        L Offline
        Leo56
        wrote on last edited by
        #12

        You might like to try the following - Use Visual Studio with Git (MSSN) https://msdn.microsoft.com/en-us/library/hh850437.aspx Git Tutorial - How to Version Projects with Git http://www.ralfebert.de/tutorials/git/ A succesful git branching model http://nvie.com/posts/a-successful-git-branching-model/ Understanding the Git Workflow https://sandofsky.com/blog/git-workflow.html GitFlow Workflow Tutorial https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow Also, note that Atlassian SourceTree (GUI) has built-in support for GitFlow (a big plus, IMHO). Atlassian also have a number of pretty good tutorials at https://www.atlassian.com/git/tutorials. No, I'm not employed by them, I'm just a beginner in all things VCS who found some good guidance there... :) Finally, 'Pro Git' is available (various formats) as a free download at http://git-scm.com/book/en/v2. This is something of a Git Bible and highly recommended by more knowledgeable people than I.

        S 1 Reply Last reply
        0
        • L Leo56

          You might like to try the following - Use Visual Studio with Git (MSSN) https://msdn.microsoft.com/en-us/library/hh850437.aspx Git Tutorial - How to Version Projects with Git http://www.ralfebert.de/tutorials/git/ A succesful git branching model http://nvie.com/posts/a-successful-git-branching-model/ Understanding the Git Workflow https://sandofsky.com/blog/git-workflow.html GitFlow Workflow Tutorial https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow Also, note that Atlassian SourceTree (GUI) has built-in support for GitFlow (a big plus, IMHO). Atlassian also have a number of pretty good tutorials at https://www.atlassian.com/git/tutorials. No, I'm not employed by them, I'm just a beginner in all things VCS who found some good guidance there... :) Finally, 'Pro Git' is available (various formats) as a free download at http://git-scm.com/book/en/v2. This is something of a Git Bible and highly recommended by more knowledgeable people than I.

          S Offline
          S Offline
          Slacker007
          wrote on last edited by
          #13

          Good stuff here. Thanks for posting the links. I use Bitbucket (Atlassian) with tortoise git. I have used SourceTree and don't like it as much as tortoise. :thumbsup:

          L 1 Reply Last reply
          0
          • Mike HankeyM Mike Hankey

            I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

            New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

            F Offline
            F Offline
            Ferdinando Santacroce
            wrote on last edited by
            #14

            Hello Mike. I read great advices, I have nothing to add. I generally use Bash shell on Windows, and I'm fine. When I feel I need a GUI, I use SourceTree by Atlassian, the best one IMHO. I use even VS2013 integration (generally only for quick committing), and I used TortoiseGit due its facility when migrating repositories from SVN. Anyway, I'm writing a book about Git for beginner, Git Essentials. If you like, I can send you an invite to get it for free when available :) Please follow me on my blog (JesusWasRasta.com) or Twitter @jesuswasrasta to get in touch. :) Bye! :) Nando

            See things I like at jesuswasrasta.com

            1 Reply Last reply
            0
            • S Slacker007

              Good stuff here. Thanks for posting the links. I use Bitbucket (Atlassian) with tortoise git. I have used SourceTree and don't like it as much as tortoise. :thumbsup:

              L Offline
              L Offline
              Leo56
              wrote on last edited by
              #15

              I've heard of Tortoise but hadn't looked at it much - it does look to be way more capable than SourceTree but also (for a beginner, like me) a bit overwhelming? However, once I feel more comfortable with Git I can see myself using Tortoise so thanks for the heads up:)

              1 Reply Last reply
              0
              • Mike HankeyM Mike Hankey

                I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                S Offline
                S Offline
                Simon ORiordan from UK
                wrote on last edited by
                #16

                Git extensions is supposed to integrate with visual studio; take it or leave it, but I had the option to install git bash at the same time. That produces the familiar git cli, which does pretty much everything the usual way. Just need to change paths to Linux style forward slashes, eg c:\temp\temp -> /c/temp/temp in git bash cli. Otherwise everything is familiar. I find it excellent.

                1 Reply Last reply
                0
                • Mike HankeyM Mike Hankey

                  I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                  New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                  S Offline
                  S Offline
                  Simon ORiordan from UK
                  wrote on last edited by
                  #17

                  Git extensions is supposed to integrate a gui with visual studio; take it or leave it, but I had the option to install git bash at the same time. That produces the familiar git cli, which does pretty much everything the usual way. Just need to change paths to Linux style forward slashes, eg c:\temp\temp -> /c/temp/temp in git bash cli. Otherwise everything is familiar. I find it excellent.

                  1 Reply Last reply
                  0
                  • Mike HankeyM Mike Hankey

                    I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                    New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                    G Offline
                    G Offline
                    Giannakakis Kostas
                    wrote on last edited by
                    #18

                    These are my suggestions: Pro Git Book[^] Very good introduction for beginners. Do not need to read the whole book. The first three chapters will teach you the basics and the main use cases. msysgit[^] This is the ultimate git in command line for windows. It allows you to use it from any command prompt, not just git bash. Git is somehow different than SVN and I believe that you *need* to use the command line. I use SourceTree and GitHub client in order to visualize changes between commits. It is also handy for a simple commit. For anything more advanced (create a branch, rebase, merge), I can only do it with the command line. The good thing is that I can easily start a command prompt at the repository location from these two tools.

                    1 Reply Last reply
                    0
                    • Mike HankeyM Mike Hankey

                      I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                      New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                      A Offline
                      A Offline
                      AspDotNetDev
                      wrote on last edited by
                      #19

                      I use SmartGit. It's standalone, which I like. I usually use it on Windows, but it also works on OS X.

                      Thou mewling ill-breeding pignut!

                      1 Reply Last reply
                      0
                      • Mike HankeyM Mike Hankey

                        I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                        New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                        P Offline
                        P Offline
                        patbob
                        wrote on last edited by
                        #20

                        Mike Hankey wrote:

                        I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository.. this is the last straw and I want to migrate to GIT

                        Seems to me the more fundamental question is why did the work disappear. If you don't know what happened, then switching may, or may not, fix the issue.

                        We can program with only 1's, but if all you've got are zeros, you've got nothing.

                        Mike HankeyM 1 Reply Last reply
                        0
                        • S Slacker007

                          Bitbucket (free). Use TortoiseGit. We use it work and it is very nice. https://bitbucket.org/[^] is the repository. and https://code.google.com/p/tortoisegit/[^] is the interaction tool. Now you could just do everything via command line and forgo the Tortoise but we all find it easier and more convenient to use TortoiseGit. http://guganeshan.com/blog/setting-up-git-and-tortoisegit-with-bitbucket-step-by-step.html[^] instructions for configuration between tortoisegit and bitbucket. HTH you.

                          S Offline
                          S Offline
                          snorkie
                          wrote on last edited by
                          #21

                          I'm also using and happy with this setup. Hogan

                          1 Reply Last reply
                          0
                          • P patbob

                            Mike Hankey wrote:

                            I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository.. this is the last straw and I want to migrate to GIT

                            Seems to me the more fundamental question is why did the work disappear. If you don't know what happened, then switching may, or may not, fix the issue.

                            We can program with only 1's, but if all you've got are zeros, you've got nothing.

                            Mike HankeyM Offline
                            Mike HankeyM Offline
                            Mike Hankey
                            wrote on last edited by
                            #22

                            From all the research I've done there's a bug in SVN where it occasionally just loses data. Along with all the other flaky crap that I've endured over the years with SVN it's just time.

                            New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                            P 1 Reply Last reply
                            0
                            • Mike HankeyM Mike Hankey

                              From all the research I've done there's a bug in SVN where it occasionally just loses data. Along with all the other flaky crap that I've endured over the years with SVN it's just time.

                              New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                              P Offline
                              P Offline
                              patbob
                              wrote on last edited by
                              #23

                              Well, yeah, if you're running into bugs like that, then loose it :)

                              We can program with only 1's, but if all you've got are zeros, you've got nothing.

                              1 Reply Last reply
                              0
                              • Mike HankeyM Mike Hankey

                                I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                                New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                                R Offline
                                R Offline
                                RASPeter
                                wrote on last edited by
                                #24

                                Another vote for GitExtensions. I've been using Git for 4 years now and I haven't found another frontend that I like better. It's probably worth noting that, for me, "better" == "more functional". Eye candy is not a consideration for me. That said, I haven't tried SourceTree yet. It looks like it could be a strong contender, so I will be checking it out. I was rather unimpressed with GitHub's frontend. It felt extremely limiting, and some of the things they did to "simplify" Git didn't make sense to me. it's probably fine if you just want to use GitHub, but not what I'd recommend if you actually want to learn Git.

                                Mike HankeyM 1 Reply Last reply
                                0
                                • R RASPeter

                                  Another vote for GitExtensions. I've been using Git for 4 years now and I haven't found another frontend that I like better. It's probably worth noting that, for me, "better" == "more functional". Eye candy is not a consideration for me. That said, I haven't tried SourceTree yet. It looks like it could be a strong contender, so I will be checking it out. I was rather unimpressed with GitHub's frontend. It felt extremely limiting, and some of the things they did to "simplify" Git didn't make sense to me. it's probably fine if you just want to use GitHub, but not what I'd recommend if you actually want to learn Git.

                                  Mike HankeyM Offline
                                  Mike HankeyM Offline
                                  Mike Hankey
                                  wrote on last edited by
                                  #25

                                  RASPeter wrote:

                                  Another vote for GitExtensions

                                  I tried; GitHub - Very unimpressed, very limited SmartGit - Still evaluating SurceTree - Nice features, nice to look at but rejected in favor or SmartGit TortoiseGIT - Evaluating but I really like it, mainly because it has a lot of functioinality and I've been using it, with SVN for years. GitExtension - Evaluating, I really like it, powerful but not a real looker. Can't remember others but I've looked at all I could get my hands on. Spending the time to try and learn the basic before I put it on, and switch on my development/production/main/personal/etc machine. Evaluating all this on a VirtualBox VMWindows 10, which I am also evaluating.

                                  New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                                  1 Reply Last reply
                                  0
                                  • Mike HankeyM Mike Hankey

                                    I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                                    New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                                    Y Offline
                                    Y Offline
                                    Yortw
                                    wrote on last edited by
                                    #26

                                    I have limited experience with GIT and simple needs when I do use it, but I get by with VS2013 and the GitHub for Windows client. Depending on your situation, those might work for you too? For advanced stuff I use Google + command line. I try not to visit there too often.

                                    1 Reply Last reply
                                    0
                                    • Mike HankeyM Mike Hankey

                                      I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                                      New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                                      U Offline
                                      U Offline
                                      User 3760773
                                      wrote on last edited by
                                      #27

                                      I personally like SourceTree. I use it on my Mac but because of the tools we use at work I have to use Windows XP and SourceTree does not support it. However, I have been the administrator for and SVN repository for close to 10 years. For that entire time I have followed at least the TSVN users list and for a lot of that time the SVN users and developers list. I have *never* heard of anyone loosing data like that. You should verify that your repository is not corrupt. If it is then you may have a hardware problem (eg, bad ram or disk) or you did not setup SVN correctly (eg, share a repository that's accessed as a file etc.) Information does not "just vanish" out of the repository. In fact Subversion does not even support removing data from the repository. Oh, you can delete a file but if you go back to a revision where that file existed, it's all still there. Now, I am not trying to convince you not to switch. I like git too. I am just suggesting that there may be an issue here that you have not thought of. For example, if you server is having problems and you migrate to git you will just have problems with git. Also, git has its own set of minefields so make sure you understand them. Good luck. :)

                                      Wayne

                                      Mike HankeyM 1 Reply Last reply
                                      0
                                      • U User 3760773

                                        I personally like SourceTree. I use it on my Mac but because of the tools we use at work I have to use Windows XP and SourceTree does not support it. However, I have been the administrator for and SVN repository for close to 10 years. For that entire time I have followed at least the TSVN users list and for a lot of that time the SVN users and developers list. I have *never* heard of anyone loosing data like that. You should verify that your repository is not corrupt. If it is then you may have a hardware problem (eg, bad ram or disk) or you did not setup SVN correctly (eg, share a repository that's accessed as a file etc.) Information does not "just vanish" out of the repository. In fact Subversion does not even support removing data from the repository. Oh, you can delete a file but if you go back to a revision where that file existed, it's all still there. Now, I am not trying to convince you not to switch. I like git too. I am just suggesting that there may be an issue here that you have not thought of. For example, if you server is having problems and you migrate to git you will just have problems with git. Also, git has its own set of minefields so make sure you understand them. Good luck. :)

                                        Wayne

                                        Mike HankeyM Offline
                                        Mike HankeyM Offline
                                        Mike Hankey
                                        wrote on last edited by
                                        #28

                                        I've been using the same repository for some 8 years and never noticed any lose but have had some strange things happen. My biggest bitch with SVN is the branching/merging, it's always an ordeal for me to reintegrate a branch back into the trunk. Seems like you have to hold you mouth just right and hope the thing works. I use AnhkSVN in VS2013 and it's hit and miss with it, may I should try VisualSVN instead. I have doubts about my drive, been having some weird problems with it recently; - couple startups ago did a disk check and not sure why - Ran a dskchk the other day and it hung at 10% so I've ordered another disk and it's on it's way should be here in a couple of days and I will off load all important data to it and use the faulty disk for scratch until it dies. Also when I do the disk clone I will replace the repo with a 5 day old backup I have. I'm a firm believer in backups and instead of monthly will go to incremental weekly when I'm busy developing. Have been trying to learn Git for the last couple of days and there are some things I really like about it but it's a strange beast to say the least. One thing I will say about it is there are a lot better tools than for SVN. Since all this started I've looked for a stand along SVN tool and haven't really found anything that's worth a crap, except TortoiseSVN.

                                        New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                                        1 Reply Last reply
                                        0
                                        • Mike HankeyM Mike Hankey

                                          I've been using TortioseSVN for years and it's all I know, easy to use but quirky. I went to retrieve a file a little while ago and noticed a months worth of work missing, simply vanished out of the repository. I do weekly off computer backups so I don't have a problem there but the last backup was, of course 6 days ago on the 5th and I've got the current working copy but everything in between is gone. This is the last straw and I want to migrate to GIT but am dirt stupid about it can someone recommend a simple, easy to use GUI for windows. Also any good references/links for beginners would be helpful. Thanks [edit] Currently looking at GitHub for windows. Any thoughts? [/edit]

                                          New version: WinHeist Version 2.1.0 My goal in life is to have a psychiatric disorder named after me. I'm currently unsupervised, I know it freaks me out too but the possibilities are endless.

                                          S Offline
                                          S Offline
                                          Stuart Dootson
                                          wrote on last edited by
                                          #29

                                          I personally prefer Mercurial, which has the very nice TortoiseHg Workbench GUI[^], distributed with the TortoiseHg Explorer extension. I also use Atlassian SourceTree[^] and (of course) the command-line. For Git (which I have used and do use when I need to)...well, the only decent GUI I've found on Windows is SourceTree, and really the command-line is the next best option. You're going to need to use the command-line at some point with git, so it's probably best to be familiar with it...

                                          Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                                          Mike HankeyM 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