git comando para ver os logs e tags

0

Ao chamar git log , vejo todas as minhas alterações e, quando chamo git tag , vejo todas as tags, mas de que maneira posso chamar git para ver os logs e tags, para que eu possa ver quais tags no ramo dado eu tinha dado mudança?

De preferência, gostaria de ter um comando que interligasse logs e tags. O pior caso seria a necessidade de solicitar cada solicitação de tag para obter uma lista de alterações, pois nosso repositório contém milhares de tags ...

Obrigado antecipadamente!

    
por Grzegorz 18.08.2016 / 01:20

1 resposta

1

Experimente git log --decorate .

De git-log (1) :

--decorate[=short|full|auto|no]

Print out the ref names of any commits that are shown.
If short is specified, the ref name prefixes refs/heads/,
refs/tags/ and refs/remotes/ will not be printed.
If full is specified, the full ref name (including prefix)
will be printed. If auto is specified, then if the output
is going to a terminal, the ref names are shown as if short
were given, otherwise no ref names are shown.
The default option is short.

Algum exemplo de saída:

commit e0c1ceafc5bece92d35773a75fff59497e1d9bd5 (tag: v2.9.3, origin/maint)
Author: Junio C Hamano <[email protected]>
Date:   Fri Aug 12 09:17:51 2016 -0700

    Git 2.9.3

    Signed-off-by: Junio C Hamano <[email protected]>
    
por 18.08.2016 / 01:59

Tags