this post was submitted on 07 Aug 2025
84 points (98.8% liked)

Programming

22083 readers
283 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

I'm wondering if you use any (graphical) clients to manage your Git, and if so, what client you use.

I myself have to use git professionally across all 3 major OS-es, and I currently use Sourcetree on Windows and macOS, and the Git tools built-in into IntelliJ on Linux.

Have given MaGit a try, but just couldn't get all the shortcuts to stick in my mind.

Interested to hear your experiences!

you are viewing a single comment's thread
view the rest of the comments
[–] Kissaki@programming.dev 8 points 3 days ago* (last edited 3 days ago) (2 children)

TortoiseGit.

Through settings, I move the Show Log to the top context menu level, and it's my entry point to every Git operation.

I see a history tree to see and immediately understand commit and branch relationships and states. I can commit, show changes, diff, rebase interactive or not, push, fetch, switch, create branches and tags, squash and split commits, commit chunk-wise through "restet after commit", … And everything from a repo overview.

/edit: To add; other clients I tried never reached what I want from a UI/GUI, never reached TortoiseGit. Including IDE integrations where I'm already in the IDE; I prefer the separate better TortoiseGit.

GitButler is interesting for it's different approach, but when I tried it out the git auth didn't remember my key password. (Since trying out jj I found out it may have been due to disabled OpenSSH Service.)

[–] Billy2600@lemmy.world 2 points 3 days ago

Seconded. I'm a .Net developer on Windows, I like the Explorer integration.

[–] Creat@discuss.tchncs.de 1 points 3 days ago (1 children)

I have a love-hate relationship with it. Due to work reasons I'm more familiar than I want to be with tortoiseSVN, and the git version is similar enough to feel at home. But that's also it's biggest downfall: it does a lot of things the "SVN way" despite being a git client. The workflow can be kinda made to work, but it always feels like it's not a native git tool, because it isn't. I would go so far as to say that it encouragedrl bad habits on git, especially for those used to tortoiseSVN.

[–] Kissaki@programming.dev 1 points 1 day ago

What do you mean in particular?

The only thing that comes to mind for me is the "restore after commit" being a different chunk-add workflow than add --patch - but I don't think it's worse.