git:git_describe
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
git:git_describe [2016/11/21 14:07] – 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 | ||
- | |||
- | PETER CONTINUE from here... | ||
- | |||
- | |||
- | |||
- | 1 file changed, 1 insertion(+) | ||
- | | ||
- | |||
- | ls | ||
- | bacon.txt | ||
- | |||
- | echo " | ||
- | git stash | ||
- | Saved working directory and index state WIP on master: 6d2649a initial commit | ||
- | HEAD is now at 6d2649a initial commit | ||
- | |||
- | git stash list | ||
- | stash@{0}: WIP on master: 6d2649a initial commit | ||
- | |||
- | git show stash@{0} | ||
- | commit d152562d7dcbf7ebdf806977cae8308f1e7bb663 | ||
- | Merge: 6d2649a d5b0ce0 | ||
- | Author: John Smith < | ||
- | Date: Wed Jul 22 02:26:34 2015 -0700 | ||
- | |||
- | WIP on master: 6d2649a initial commit | ||
- | |||
- | diff --cc bacon.txt | ||
- | index 6e953b2, | ||
- | --- a/bacon.txt | ||
- | +++ b/bacon.txt | ||
- | @@@ -1,1 -1,1 +1,2 @@@ | ||
- | bacon | ||
- | ++bits | ||
- | |||
- | git log --oneline | ||
- | 6d2649a initial commit | ||
- | |||
- | git branch | ||
- | * master | ||
- | |||
- | git fsck --lost-found | ||
- | Checking object directories: | ||
- | |||
- | git show-ref | ||
- | 6d2649ab6b3f34ecf5437314f08f9b291f8fb9e3 refs/ | ||
- | d152562d7dcbf7ebdf806977cae8308f1e7bb663 refs/stash | ||
- | </ | ||
git/git_describe.1479737220.txt.gz · Last modified: 2020/07/15 09:30 (external edit)