0

I previously used

git update-index --assume-unchanged <file>

to temporarily untrack some of my files in git. Now I want to list all the files that I did that for. How can this be done?

cody
  • 129
  • 2
  • 10
  • 1
    In general you should [use `--skip-worktree`](https://git-scm.com/docs/git-update-index#_skip_worktree_bit) for this, not `--assume-unchanged`. The latter is only if the file actually is unchanged. – Daniel H Oct 23 '17 at 22:34

1 Answers1

2

From the man page:

To see which files have the "assume unchanged" bit set, use git ls-files -v (see git-ls-files).

Lawrence D'Oliveiro
  • 2,768
  • 1
  • 15
  • 13