Recursive git update-index --assume-unchanged
Asked Answered
D

2

45

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?

Distil answered 2/5, 2013 at 19:50 Comment(2)
did you maybe want to do --asume-unchanged??Electromotive
oops, that was a typo :) The code I'm running is actually using --assume-unchangedDistil
E
79

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

PSA: There is a high chance that assume-unchanged is not what you are looking for and you should use skip-worktree instead. See here for more info.

Electromotive answered 2/5, 2013 at 20:5 Comment(2)
On a GNU system ls-files -z with xargs -0 is a more robust solution, just in case there are files with whitespace in their names.Frigg
thank you so much, I have been searching the internet for hours and this finally worked. May God bless your holy immortal soul.Gulch
B
1

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" \;
Batch answered 12/8, 2016 at 14:44 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.