I understand that a .gitignore file cloaks specified files from Git\'s version control. I have a project (LaTeX) that generates lots of extra files (.auth, .dvi, .pdf, logs,
You can use git config status.showUntrackedFiles no and all untracked files will be hidden from you. See man git-config for details.
git config status.showUntrackedFiles no
man git-config