mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-13 12:15:25 +02:00
git-name-rev: add page (#16549)
This commit is contained in:
parent
75fd797bc1
commit
57af452076
1 changed files with 36 additions and 0 deletions
36
pages/common/git-name-rev.md
Normal file
36
pages/common/git-name-rev.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# git name-rev
|
||||
|
||||
> Describe a commit using existing ref names.
|
||||
> More information: <https://git-scm.com/docs/git-name-rev>.
|
||||
|
||||
- Show the name for HEAD:
|
||||
|
||||
`git name-rev HEAD`
|
||||
|
||||
- Show only the name:
|
||||
|
||||
`git name-rev --name-only HEAD`
|
||||
|
||||
- Enumerate all matching ref names:
|
||||
|
||||
`git name-rev --all`
|
||||
|
||||
- Use only tags to name the commit:
|
||||
|
||||
`git name-rev --tags HEAD`
|
||||
|
||||
- Exit with a non-zero status code instead of printing `undefined` for unknown commits:
|
||||
|
||||
`git name-rev --no-undefined {{commit-ish}}`
|
||||
|
||||
- Show names for multiple commits:
|
||||
|
||||
`git name-rev HEAD~1 HEAD~2 main`
|
||||
|
||||
- Restrict names to branch refs:
|
||||
|
||||
`git name-rev --refs refs/heads/ {{commit-ish}}`
|
||||
|
||||
- Read commit IDs from `stdin`:
|
||||
|
||||
`echo "{{commit-ish}}" | git name-rev --annotate-stdin`
|
Loading…
Add table
Reference in a new issue