"hg tags --debug" 对于 git
"hg tags --debug" for git
我正在从 Mercurial 迁移到 Git。
git 中是否有与以下 Mercurial 命令功能相同的等效命令:
hg tags --debug
谢谢
hg tags
列出标签所以我猜 hg tags --debug
是 hg tags --verbose
。在 git
中,它大致相当于
git tag --list -n1
见https://git-scm.com/docs/git-tag#Documentation/git-tag.txt--nltnumgt
更新。我对 --debug
的猜测是错误的。让我们修复它:
git tag -l --format='%(refname) -> %(*objectname)'
我正在从 Mercurial 迁移到 Git。
git 中是否有与以下 Mercurial 命令功能相同的等效命令:
hg tags --debug
谢谢
hg tags
列出标签所以我猜 hg tags --debug
是 hg tags --verbose
。在 git
中,它大致相当于
git tag --list -n1
见https://git-scm.com/docs/git-tag#Documentation/git-tag.txt--nltnumgt
更新。我对 --debug
的猜测是错误的。让我们修复它:
git tag -l --format='%(refname) -> %(*objectname)'