this post was submitted on 01 Jul 2023
158 points (100.0% liked)
Opensource
39 readers
1 users here now
This magazine is dedicated to discussions on open source software, hardware, and technology. Whether you are a developer, a tech enthusiast, or simply interested in the philosophy of open source, this is the place for you. Here you can share your knowledge, ask questions, and engage in discussions on topics such as open source programming languages, operating systems, hardware, and more. From the benefits and challenges of open source to the latest developments and trends, this category covers a wide range of topics related to open source.
founded 2 years ago
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.
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]
andgit diff sha..sha [file]
and I could see that being useful presented graphically.