Last active
August 7, 2025 05:10
-
-
Save anthonywong/3f32735663738ffb50baa5bfaae9f107 to your computer and use it in GitHub Desktop.
Advanced Git commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Finds the merge commits that lie on the path between a specific commit to the head. Useful for knowing when a commit has been merged by maintainer: | |
| git log --oneline --graph --merges --ancestry-path <commit-hash>.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment