existe uma maneira de verificar a integridade de um repositório clonado?

9

Eu verifiquei um repositório remoto. Agora fiz algumas operações de adicionar algum arquivo ao repositório. bem como (talvez) remover alguns arquivos no repositório. Em ambas as instâncias o git não foi informado das mudanças. Existe uma maneira de o git verificar a integridade do repo. e me informar quais arquivos foram alterados (ou não)?

Eu vi esta postagem 1 mas não sei se isso abrange o cenário que eu compartilhei acima. $git fsck é suficiente? Se eu remover um arquivo do repositório local. como o git diria / mostraria?

Aguarde as respostas.

    
por shirish 07.09.2013 / 01:14

1 resposta

6

Parece que você está procurando pelo comando git status .

De man git-status

Displays paths that have differences between the index file and the current HEAD commit, paths that have differences between the working tree and the index file, and paths in the working tree that are not tracked by git (and are not ignored by gitignore(5)). The first are what you would commit by running git commit; the second and third are what you could commit by running git add before running git commit.

    
por 07.09.2013 / 01:47

Tags