Forrest logo
back to context overview

git-annotate

List of commands for git-annotate:

  • git-annotate:tldr:5d212 git-annotate: Print a file with the author email and commit hash prepended to each line.
    $ git annotate -e ${filename}
    try on your machine
    explain this command
  • git-annotate:tldr:a1f8a git-annotate: Print a file with the author name and commit hash prepended to each line.
    $ git annotate ${filename}
    try on your machine
    explain this command
  • git-annotate:tldr:fae92 git-annotate: Print only rows that match a regular expression.
    $ git annotate -L :${regexp} ${filename}
    try on your machine
    explain this command
back to context overview