LinuxCommandLibrary

tig

tig

TLDR

Show the sequence of commits starting from the current one in reverse chronological order

$ tig
copy


Show the history of a specific branch
$ tig [branch]
copy


Show the history of specific files or directories
$ tig [path1 path2 ...]
copy


Show the difference between two references (such as branches or tags)
$ tig [base_ref]..[compared_ref]
copy


Display commits from all branches and stashes
$ tig --all
copy


Start in stash view, displaying all saved stashes
$ tig stash
copy

Copied to clipboard