How does “index f2e4113..d4b9bfc 100644” in git diff correspond to SHA1 ID in gitk?

edit: @wiswit has pointed to this good explanation. f2e4113 and d4b9bfc are file-indexes. With git show f2e4113 you see the file before the commit and git show d4b9bfc shows the file after the commit. The combined diff format is in the git diff manual pages described. COMBINED DIFF FORMAT Any diff-generating command can take the … Read more

gitk: command not found

I just installed the latest version of git via homebrew on macos. 11:28 $ git –version git version 2.25.0 It doesn’t seem to have gitk and git gui so I noticed the answer for linux and tried to install the same package git-gui via homebrew and it worked. brew install git-gui Found the bug here. … Read more

A pretty and feature rich Git GUI for Linux [closed]

I find myself using mainly gitg in combination with the command line for more complicated tasks. Source repository: http://git.gnome.org/browse/gitg. Recently, a new version 0.3.2 has been released, which is a rewrite using Vala. It’s not yet feature-complete compared to the old 0.2 series, but the refactor is expected to speed up future development. Also, there … Read more

tech