Recursive git update-index --assume-unchanged

2019-01-31 18:18发布

I'm trying to run the following:

git update-index --assume-unchanged myFolderToIgnore

Where myFolderToIgnore is a folder. However it fails saying its "unable to mark" it.

So I tried:

git update-index --assume-unchanged myFolderToIgnore/

Which GIT responds to with Ignoring path myFolderToIgnore/ but doesn't do anything (it still sees my changes and tries to check them in).

In the end I had to go in and manually mark each individual file as unchanged. What am I missing here?

标签: git gitignore
2条回答
姐就是有狂的资本
2楼-- · 2019-01-31 19:06

update-index is an internal plumbing command and thus not as comfortable as the real front-end commands. You will have to handle the recursion bit yourself:

git ls-files -z myFolderToIgnore/ | xargs -0 git update-index --assume-unchanged
查看更多
在下西门庆
3楼-- · 2019-01-31 19:07

I ran into this issue where my folder had hundreds of thousands of files, and thousands of folders.

This resulted in "Argument list too long".

The following solution will run the command for each folder and traverse the contents in those folders. So as long as your hundreds of thousands of files are separated in folders then this will work.

find . -maxdepth 1 -type d \( ! -name . \) -exec bash -c "cd '{}' && pwd && git ls-files -z ${pwd} | xargs -0 git update-index --assume-unchanged" \;
查看更多
登录 后发表回答