Skip to content

Instantly share code, notes, and snippets.

@vishvananda
Created May 8, 2013 00:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vishvananda/5537363 to your computer and use it in GitHub Desktop.
Save vishvananda/5537363 to your computer and use it in GitHub Desktop.
show me all commits since we added the debian directory that don't modify the debian directory, aren't cherry-picks (as identified by having the word 'cherry' in the commit message), and aren't merge commits. (The since 2011-01-01 is to ignore really old commits when searching for the debian directory addition since really old commits of nova ha…
git log --no-merges --pretty=oneline `git rev-list HEAD --since "2011-01-01" -- debian | tail -n1`..HEAD | grep -v -F "`git rev-list HEAD -- debian`" | grep -v -F "`git rev-list HEAD --grep cherry`"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment