Скажи что?Какие дополнительные вещи?Разве это не похоже на SHA1 ... можно ли просто вернуть "привет"?
"git description", вероятно, не делает то, что вы думаете:
DESCRIPTION
The command finds the most recent tag that is reachable from a commit.
If the tag points to the commit, then only the tag is shown. Otherwise,
it suffixes the tag name with the number of additional commits on top
of the tagged object and the abbreviated object name of the most recent
commit.
Итак, в вашем примере "hello-1-48281" git говорит: "тег hello
отделен 1 коммитом от текущего объекта, который равен 48281
."
Если вам нужен список тегов, просто наберите git tag -l
.