tig:tldr:f7d07
tig: Display commits from all branches and stashes.
$ tig --all
try on your machine
The tig --all command is used to open the tig program with all available options. tig is a text-based interface for Git, a popular version control system.
Here's a breakdown of the command:
tig: This is the main command to launch thetigprogram.--all: This is an option passed to thetigcommand. It instructstigto show all branches and commits in the repository. Without this option,tigmay only display the current branch or a specific branch defined by additional arguments.
By using tig --all, you can view all branches and commits in a repository, which can be useful for visualizing the commit history, inspecting changes, and navigating through the repository's content.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.