tags:

views:

98

answers:

1

I don't mean what is it or how do you use it. I mean, rather literally, what have I marked as --assume-unchanged? Is there any way to find out what I've tucked away using that option? I've dug through the .git/ directory and don't see anything that looks like what I'd expect, but it must be somewhere. I've forgotten what I marked this way a few weeks ago and now I need to document those details for future developers.

Thanks.

+3  A: 

You can use git ls-files -v. If the character printed is lower-case, the file is marked assume-unchanged.

Andrew Aylett
Ah ha! Now _that's_ what I was looking for. Thanks, Andrew. A quick alias/script should make it easy to retrieve a list limited to those files.
Rob Wilkerson
git ls-files -v | grep ^[a-z]
Matt R