Comment on RelaGit: First Beta Release now available to download.
technom@programming.dev 9 months agoFunny. I have the opposite experience with git. Use GUI for simple tasks and drop to CLI when it’s complicated or something went wrong.
Comment on RelaGit: First Beta Release now available to download.
technom@programming.dev 9 months agoFunny. I have the opposite experience with git. Use GUI for simple tasks and drop to CLI when it’s complicated or something went wrong.
killeronthecorner@lemmy.world 9 months ago
Same. I’ve also grown very weary of having to dig people out of git messes they’ve made with sourcetree and the likes.
Visual clients aren’t to blame for that, but they contribute. So many times I’ve asked “and what git commands did that run?” only to receive a dumb state as a reply.
dinckelman@lemmy.world 9 months ago
Not entirely unexpected. If you don’t know what you’re doing, a GUI will only accelerate the path between you and the wrong result, because these tend to abstract things too much at times
killeronthecorner@lemmy.world 9 months ago
Agreed. I’ve been trying to explain to someone recently why rebasing and force pushing their feature branch has no benefit when we use a squash commit strategy for merging to main.
Again, tools are not blame, but when combined with a lack of understanding and accumulated “git dogma”, it can be quite disheartening.
dinckelman@lemmy.world 9 months ago
I had a really sad eye-opener at university, in my third year. We had a lecture where they tried to explain what version control is, and the entire 300-something person class just said fuck it. These people honestly think that copying code to USB sticks and gDrive is easier than learning 4 commands, and a git frontend
AnActOfCreation@programming.dev 9 months ago
While you’re 100% right, is there anything wrong with this approach? Sometimes I like to keep by personal branches clean, especially before I open a PR.
technom@programming.dev 9 months ago
I had the fortune of being the trainer for my company in all things git. I made sure that my colleagues (most of whom were straight out of universities) were introduced to git CLI and git concepts. No git GUIs were introduced. Consequently, the mess they made was easy to rectify. And then I occasionally read about horror stories like these where GUIs are allowed.
pycorax@lemmy.world 9 months ago
I found SourceTree to be especially bad at this. For the inexperienced, I think Fork is a lot better. It also helps that you can inspect the commands that were executed by it.