A curated list of delightful tools for digital creatives in a variety of mediums.

  • elscallr@kbin.social
    link
    fedilink
    arrow-up
    6
    ·
    1 year ago

    Actually not trying to be a dick or a pedant, but is there a problem with just the git command? I’ve been using it since git existed so I don’t really have anything to compare it to. The idea of finding another client seems a bit strange to me.

    • rehendix@kbin.social
      link
      fedilink
      arrow-up
      5
      ·
      1 year ago

      While the CLI provides the same functionality, it can be a lot easier to visually parse information or provide direct interactivity with a GUI instead. If you’re working on a large project or just want a different way to display the information git provides, it makes things a bit smoother.

      • HeinousTugboat@kbin.social
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        Generally I just use VSCode’s source control UI when I want a GUI for git. I can’t imagine using a standalone GUI for git when all the big editors have their own interfaces.

        • rehendix@kbin.social
          link
          fedilink
          arrow-up
          1
          ·
          1 year ago

          Oh same here, I’m not sure what the use-case for a standalone one would be but I definitely do prefer some visual over the command-line trees.

    • tonamel@kbin.social
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      One thing I’ve found invaluable about a visual interface is the ability to quickly browse the commit tree. Having a big list of commits that you can sort and click to see the diff of each file has saved me on multiple occasions. I’m sure it’s all info you can get from the CLI as well, but I can’t imagine it being even half as fast.

      • elscallr@kbin.social
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        1 year ago

        I guess I can see that. It’s not common I need to do so, but a few times I’ve went spelunking with git log [file] and git diff sha..sha [file] and I could see that being useful presented graphically.