Live data from Hacker News

GitUI: Terminal UI for Git

github.com

41–50 of 94 posts

Re: GitUI: Terminal UI for Git

#44

Any tig users here ? I’m happy with it since then, looks like the feature set is pretty similar

I use tig daily. I've never used anything I like as much for quickly browsing through commits in a repository or staging individual hunks.

how does tig compare to something like magit?

Re: GitUI: Terminal UI for Git

#46
post #2

Any lazygit users that switched over to gitui? If so, what made you switch?

Started with lazygit, but read about gitui at essentially the same time. Got used to gitui and it's speed so I stayed. Lazygit is pretty great too.

I mostly use gitui for staging things, it supports file, hunk and line staging, it's meant to compliment git cli, not replace it.

I also use it to manage tags.

Re: GitUI: Terminal UI for Git

#49

Any tig users here ? I’m happy with it since then, looks like the feature set is pretty similar

tig rules. gitui does not support vim keybinding for me, or I did not find out how. rust's size always surprise me: tig -- 600KB, gitui: 11MB similar size pattern for other utilties, in general, rust executable is about 200x larger than its c/c++ peers, and, they all linked to similar c/c++ libraries, looks like rust stdlib is pretty big in size to me.

rust binaries are statically linked, that's the big difference. If you included all the libc code statically in most c programs they'd probably also be pretty big
Post reply on HN