Como remover apenas o modo de arquivo do git index

0

Eu ititializei o repositório git e depois percebi que o git indexava o modo de arquivo como 777 ou 644, e quando o git do modo de arquivo muda mostra que o modo está mudando e "quer" que o arquivo seja enviado apenas porque seu modo foi alterado. Como posso remover o modo de arquivo "registros" de git index (histórico) de tal arquivo, enquanto salvá-lo "real" mudando o histórico - história de mudar seu conteúdo?

    
por Александр Комаров 18.07.2018 / 17:30

1 resposta

1

Você pode conseguir isso parcialmente definindo core.fileMode como falso:

git config core.fileMode false

Isso fará com que o bit executável (e somente aquele) seja ignorado.

Citando a documentação git-config :

Tells Git if the executable bit of files in the working tree is to be honored.

Some filesystems lose the executable bit when a file that is marked as executable is checked out, or checks out a non-executable file with executable bit on. git-clone(1) or git-init(1) probe the filesystem to see if it handles the executable bit correctly and this variable is automatically set as necessary.

A repository, however, may be on a filesystem that handles the filemode correctly, and this variable is set to true when created, but later may be made accessible from another environment that loses the filemode (e.g. exporting ext4 via CIFS mount, visiting a Cygwin created repository with Git for Windows or Eclipse). In such a case it may be necessary to set this variable to false. See git-update-index(1).

The default is true (when core.filemode is not specified in the config file).

Se isso é uma boa ideia é outro debate ...

    
por 18.07.2018 / 17:38

Tags