예배 규칙서 찾다
Guides gitattributes giteveryday gitglossary gitignore gitmodules gitrevisions gittutorial gitworkflows Administration git archive git bundle git clean git filter-branch git fsck git gc git instaweb git reflog Basic Snapshotting git add git commit git diff git mv git reset git rm git status Branching and Merging git branch git checkout git log git merge git mergetool git stash git tag Debugging git bisect git blame git grep Email git am git format-patch git request-pull git send-email External Systems git fast-import git svn Getting and Creating Projects git clone git init Git git annotate git archimport git bisect-lk2009 git check-attr git check-mailmap git check-ref-format git checkout-index git cherry git citool git column git credential git credential-cache git credential-store git cvsexportcommit git cvsimport git cvsserver git diff-files git diff-tree git difftool git fast-export git fetch-pack git fmt-merge-msg git get-tar-commit-id git gui git http-backend git http-fetch git http-push git imap-send git index-pack git interpret-trailers git ls-remote git ls-tree git mailinfo git mailsplit git merge-file git merge-index git merge-one-file git merge-tree git mktag git mktree git name-rev git notes git p4 git pack-objects git pack-redundant git pack-refs git parse-remote git patch-id git prune git prune-packed git quiltimport git receive-pack git remote-ext git remote-fd git remote-testgit git repack git replace git rerere git send-pack git sh-i18n git sh-setup git shell git show-branch git show-index git stripspace git unpack-file git unpack-objects git upload-archive git upload-pack git var git verify-commit git verify-tag git whatchanged git worktree Inspection and Comparison git describe git shortlog git show Miscellaneous api credentials api index gitcli gitcore tutorial gitcredentials gitcvs migration gitdiffcore githooks gitk gitnamespaces gitremote helpers gitrepository layout gitsubmodules gittutorial 2 gitweb gitweb.conf pack format User Manual Patching git apply git cherry-pick git rebase git revert Plumbing Commands git cat-file git check-ignore git commit-tree git count-objects git diff-index git for-each-ref git hash-object git ls-files git merge-base git read-tree git rev-list git rev-parse git show-ref git symbolic-ref git update-index git update-ref git verify-pack git write-tree Server Admin git daemon git update-server-info Setup and Config git git config git help Sharing and Updating Projects git fetch git pull git push git remote git submodule
문자

名称

git-name-rev  - 查找给定转速的符号名称

概要

git name-rev [--tags] [--refs=<pattern>]               ( --all | --stdin | <commit-ish>… )

描述

查找适用于人类消化的符号名称,以可解析的任何格式给出修订git rev-parse

选项

--tags

不要使用分支名称,而只使用标签来命名提交

--refs=<pattern>

只能使用名称与给定 shell 模式匹配的引用。该模式可以是分支名称,标签名称或完全限定参考名称之一。如果给定多次,请使用名称与任何给定 shell 模式匹配的 ref。使用--no-refs明确给出任何以前的参考模式。

--exclude=<pattern>

不要使用任何名字与给定 shell 模式匹配的 ref。该模式可以是分支名称,标签名称或完全限定参考名称之一。如果给定多次,当匹配任何给定模式时, ref 将被排除。当和--refs 一起使用时,只有在匹配至少一个--refs 模式并且不匹配任何--exclude 模式时,ref 才会用作匹配。使用--no-exclude明确排除模式的列表。

--all

列出所有提交可达的所有提交

--stdin

通过用“$ hex($ rev_name)”替换所有40个字符的 SHA-1格式(例如$ hex)来转换 stdin。与--name-only 一起使用时,替换为“$ rev_name”,完全省略$ hex。旨在供剧本使用。

--name-only

而不是打印 SHA-1和名称,只打印名称。如果使用--tags 给定,“tags /”的常用标记前缀也将从名称中省略,从而使输出git-describe更加紧密。

--no-undefined

如果参考值未定义,则代码为错误代码!= 0,而不是打印undefined

--always

显示唯一缩写的提交对象作为后备。

示例

给定一个提交,找出它相对于本地裁判的位置。说有人写了你关于那个奇妙的提交 33db5f4d9027a10e477ccf054b2c1ab94f74c85a。当然,你看看提交,但只是告诉你发生了什么,但不是上下文。

输入git name-rev

% git name-rev 33db5f4d9027a10e477ccf054b2c1ab94f74c85a
33db5f4d9027a10e477ccf054b2c1ab94f74c85a tags/v0.99~940

现在你明智了,因为你知道它在 v0.99之前发生了940次修订。

你可以做的另一件好事是:

% git log | git name-rev --stdin
이전 기사: 다음 기사: