I have my dot files in Github publicly.
This means that I have only a few files at my Home shared with others.
The disadvantage of sharing, for instance, .bashrc with others is that I need to be careful not adding confidential data to Github.
I run
git status
I get a long list of untracked files.
I found out that apparently the only way to get rid of them them is by running
git clean -df
This would remove my private files which I do not want to.
How can you remove my private files from Git's status without removing my private files at my Home?