Guest User

Untitled

a guest
Aug 14th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. git describe with two tags on the same commit
  2. SEARCH STRATEGY
  3. For each committish supplied, git describe will first look for a tag which tags
  4. exactly that commit. Annotated tags will always be preferred over lightweight tags,
  5. and tags with newer dates will always be preferred over tags with older dates.
  6. If an exact match is found, its name will be output and searching will stop.
  7.  
  8. --all
  9. Instead of using only the annotated tags, use any ref found in .git/refs/. This option enables
  10. matching any known branch, remote-tracking branch, or lightweight tag.
  11.  
  12. --tags
  13. Instead of using only the annotated tags, use any tag found in .git/refs/tags. This option
  14. enables matching a lightweight (non-annotated) tag.
Add Comment
Please, Sign In to add comment