Can I get a list of files marked –assume-unchanged?

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

Source: Can I get a list of files marked –assume-unchanged?

This is a great way to hide changes to files (e.g., db config files):

git config --global alias.hidden '!git ls-files -v | grep "^[a-z]"'

Here’s a complete selection of nice additions:

git config --global alias.hide '!git update-index --assume-unchanged'
git config --global alias.unhide '!git update-index --no-assume-unchanged'
git config --global alias.unhide-all '!git update-index --really-refresh'
git config --global alias.hidden '!git ls-files -v | grep "^[a-z]"'
git config --global alias.ignored '!git !git status -s --ignored | grep \"^!!\"'' 

Nifty!

MailTo Syntax

MailTo Syntax.

The MailTo command can do more than enter a single e-mail address in the “Send To” field while activating your e-mail program. It can also:

Feature Syntax
Address message to multiple recipients , (comma separating e-mail addresses)
Add entry in the “Subject” field subject=Subject Field Text
Add entry in the “Copy To” or “CC” field [email protected]
Add entry in the “Blind Copy To” or “BCC” field [email protected]
Add entry in the “Body” field body=Your message here
Within the body use “%0A” for a new line,
use “%0A%0A” for a new line preceded by a blank line (paragraph),
see example below.

Notes:

” “ (beginning and ending double quotes) are necessary if any spaces are used Mailto parameter should be preceded by “?” for the first or only parameter and “&” for second and subsequent parameter.

Some examples, with actual HTML Code included, follow:

Simple MailTo

Features may be used in combination

Remember to use only one ? (question mark), when providing multiple entries beyond e-mail address