Forrest logo
back to context overview

git-blame

List of commands for git-blame:

  • git-blame:tldr:04a44 git-blame: Print file with author name and commit hash on each line before a specific commit.
    $ git blame ${commit}~ ${filename}
    try on your machine
    explain this command
  • git-blame:tldr:0b36c git-blame: Print file with author email and commit hash on each line.
    $ git blame -e ${filename}
    try on your machine
    explain this command
  • git-blame:tldr:48307 git-blame: Print file with author name and commit hash on each line at a specific commit.
    $ git blame ${commit} ${filename}
    try on your machine
    explain this command
  • git-blame:tldr:f2e38 git-blame: Print file with author name and commit hash on each line.
    $ git blame ${filename}
    try on your machine
    explain this command
back to context overview