Skip to content

Instantly share code, notes, and snippets.

View lambda-mike's full-sized avatar

Michał Grygierzec lambda-mike

View GitHub Profile
@lambda-mike
lambda-mike / git.md
Last active August 11, 2022 13:26
Git snippets

Git

log

# find all commits which modify any 'package.json' file on 'dev' branch in remote 'origin' since yesterday
git log origin/dev --since='yesterday' --name-only -- "*/package.json"