Forrest logo
tool overview
On this page you find all important commands for the CLI tool gitk. If the command you are looking for is missing please ask our AI.

gitk

Gitk is a graphical user interface (GUI) tool for viewing and manipulating the commit history in a Git repository. It is a built-in tool that comes with Git and provides a visual representation of the commit graph, branches, tags, and diffs.

Some key features of gitk include:

  1. Commit History: Gitk displays a graphical visualization of the commit history, showing the relationships between commits and their branch paths.

  2. Branches and Tags: It allows you to view and manage branches and tags in the repository. You can create, delete, and merge branches, as well as create and delete tags.

  3. Interactive Diffs: Gitk provides a side-by-side diff view of changes between different commits, allowing you to inspect and understand the differences in a visual manner.

  4. Annotate Blame: It includes the ability to track the history of individual lines within a file, also known as git blame or git annotate. This feature helps understand who made specific changes to a file and when.

  5. Filtering and Sorting: Gitk allows you to filter commit history based on various criteria such as author name, commit message, or timeframe. You can also sort the commits based on different fields like date, author, or commit message.

  6. Interactive Rebasing: Gitk includes a feature called "Edit commit" which enables interactive rebasing. This allows you to modify and reorganize commits in a branch interactively.

Gitk operates as a standalone application launched from the command line or Git terminal. It provides a visual way to navigate and analyze the history of Git repositories, making it easier to understand and manage changes within a project.

List of commands for gitk:

  • gitk:tldr:2483d gitk: Show repository browser for a specific file or directory.
    $ gitk ${filename_or_directory}
    try on your machine
    explain this command
  • gitk:tldr:4a6c8 gitk: Show commits older than 1/1/2016.
    $ gitk --until="${1-1-2015}"
    try on your machine
    explain this command
  • gitk:tldr:8679f gitk: Show commits made since 1 week ago.
    $ gitk --since="${1 week ago}"
    try on your machine
    explain this command
  • gitk:tldr:d3661 gitk: Show the repository browser for the current Git repository.
    $ gitk
    try on your machine
    explain this command
tool overview