Git

NOME

git-whatchanged - Exibe os registros logs com as diferenças que cada commit introduz

RESUMO

git whatchanged <opção>…​

DESCRIÇÃO

Exibe os registros log do commit e saída diff que cada commit introduz.

New users are encouraged to use git-log[1] instead. The whatchanged command is essentially the same as git-log[1] but defaults to showing the raw format diff output and skipping merges.

O comando é mantido principalmente por razões históricas; muitas pessoas que aprenderam Git bem antes do git log ser inventado, lendo a lista de discussão do kernel do Linux, são treinados para digitá-lo.

Exemplos

git whatchanged -p v2.6.12.. include/scsi drivers/scsi

Exibe como correções dos commits desde a versão v2.6.12 que alterou qualquer arquivo nos subdiretórios include/scsi ou drivers/scsi

git whatchanged --since="2 semanas atrás" -- gitk

Show the changes during the last two weeks to the file gitk. The "--" is necessary to avoid confusion with the branch named gitk

GIT

Parte do conjunto git[1]

scroll-to-top