DEV Community

Discussion on: Looking for a nice git client for Linux. Recommendations?

Collapse
 
amritanshupandey profile image
Amritanshu Pandey

I think command line is the best way to use git. You learn a lot more that way.

Only time i use a gui client is for viewing the diff. I use meld as a gui diff tool on linux.

Collapse
 
funbeedev profile image
Fum

I agree command line is a good way to learn. But when it comes to viewing branch paths and having other visual aids, a git client comes handy.

Collapse
 
0916dhkim profile image
Danny Kim

git log --all --graph --oneline

Thread Thread
 
funbeedev profile image
Fum

Oh wow that's handy to know, thanks!