Skip to content

Instantly share code, notes, and snippets.

@tangoabcdelta
Created January 12, 2021 17:07
Show Gist options
  • Save tangoabcdelta/3a5dc5da8e0086c85358bb77b0dd675c to your computer and use it in GitHub Desktop.
Save tangoabcdelta/3a5dc5da8e0086c85358bb77b0dd675c to your computer and use it in GitHub Desktop.
How to do a git blame in git
How to do a git blame in git:
git blame -L306,+20 client/apps/Manage/Campaign/components/Form/Targeting/index.js

# as with any unix command, you can move the parameters to the end
# i always do it for the sake of conveniences
# because editing the line numbers, this way, becomes very easy
git blame client/apps/Manage/Campaign/components/Form/Targeting/index.js -L 306,326
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment