git:git_describe
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
git:git_describe [2016/11/22 09:34] – peter | git:git_describe [2019/11/29 15:01] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== GIT - git describe ====== | ||
- | |||
- | All this command does is show you the most recent annotated tag that is reachable from a commit. | ||
- | |||
- | This command takes a reference or commit hash and response with the most recent tag. If there was a commit after the tag, the tag will be followed by the number of commits and a letter " | ||
- | |||
- | <code git> | ||
- | git init | ||
- | Initialized empty Git repository in / | ||
- | |||
- | echo " | ||
- | git add bacon.txt | ||
- | git commit -am "add bacon file" | ||
- | [master (root-commit) 12da48f] add bacon file | ||
- | 1 file changed, 1 insertion(+) | ||
- | | ||
- | |||
- | git branch | ||
- | * master | ||
- | |||
- | git tag -a v1.0 -m "This is the first version" | ||
- | |||
- | git describe | ||
- | v1.0 | ||
- | |||
- | git show v1.0 | ||
- | tag v1.0 | ||
- | Tagger: John Smith < | ||
- | Date: Wed Jul 22 04:39:15 2015 -0700 | ||
- | |||
- | This is the first version | ||
- | |||
- | commit 12da48ff9c54f0f7a5a38fe6d7bde58fc8550dfe | ||
- | Author: John smith < | ||
- | Date: Wed Jul 22 04:39:15 2015 -0700 | ||
- | |||
- | add bacon file | ||
- | |||
- | diff --git a/bacon.txt b/bacon.txt | ||
- | new file node 100644 | ||
- | index 0000000..6e953b2 | ||
- | --- /dev/null | ||
- | +++ b/bacon.txt | ||
- | @@ -0,0 +1 @@ | ||
- | +bacon | ||
- | |||
- | echo " | ||
- | git add cheese.txt | ||
- | git commit -am "add cheese file" | ||
- | [master 6114528] add cheese file | ||
- | 1 file changed, 1 insertion(+) | ||
- | | ||
- | |||
- | git describe | ||
- | v1.0-1-g6114528 | ||
- | |||
- | git log --oneline 6114528 | ||
- | 6114528 add cheese file | ||
- | 12da48f add bacon file | ||
- | </ | ||
git/git_describe.1479807282.txt.gz · Last modified: 2020/07/15 09:30 (external edit)