List deleted files and removes each
$ git ls-files -d | xargs git rm
Show a text-based graphical representation
$ git log --graph
Ignoring changes in tracked files
$ git update-index --assume-unchanged <file>
$ git update-index --no-assume-unchanged <file>
Remove untracked files and directories from working tree
$ git clean -d -f