I want to do format-patch between the last revision that has a tag that start with "Sync_" and the HEAD
Something like:
git format-patch Sync_*...HEAD
Is there a way to do that?
I want to do format-patch between the last revision that has a tag that start with "Sync_" and the HEAD
Something like:
git format-patch Sync_*...HEAD
Is there a way to do that?
Copyright © 2021 Jogjafile Inc.
This finds the first reachable annotated tag with this pattern (glob) from
HEAD
.