Skip to content

Instantly share code, notes, and snippets.

@elventear
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save elventear/2424f4d4f8e67e73ef79 to your computer and use it in GitHub Desktop.

Select an option

Save elventear/2424f4d4f8e67e73ef79 to your computer and use it in GitHub Desktop.
Search for a delete git in file in history
# http://stackoverflow.com/questions/7203515/how-to-locate-a-deleted-file-in-the-commit-history
# Search for all instances of the file
git log --all -- <path-to-file>
# Display the contents of the file at SHA
git show <SHA> -- <path-to-file>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment