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?
--asume-unchanged
?? – Electromotive--assume-unchanged
– Distil