Forrest logo
back to context overview

gitk

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
    gitk:tldr:dc7ed gitk: Show at most 100 changes in all branches.
    $ gitk --max-count=${100} --all
    try on your machine
    explain this command
back to context overview