git: How to ignore all present untracked files?
As already been said, to exclude from status just use: If you instead want to permanently ignore currently untracked files you can, from the root of your project, launch: Every subsequent call to git status will explicitly ignore those files. UPDATE: the above command has a minor drawback: if you don’t have a .gitignore file … Read more