Where does “git update-index --assume-unchanged file” actually save this information to?

后端 未结 2 1640
南旧
南旧 2020-12-16 18:26

I like to modify config files directly (like .gitignore and .git/config) instead of remembering arbitrary commands, but I don\'t know where Git stores the file references th

2条回答
  •  Happy的楠姐
    2020-12-16 19:24

    It says where in the command - git update-index

    So you can't really be editing the index as it is not a text file.

    Also, to give more detail on what is stored with the git update-index --assume-unchanged command, see the Using “assume unchanged” bit section in the manual

提交回复
热议问题