| title | How to Remove (Delete) all UNTRACKED Files in Git | |||
|---|---|---|---|---|
| tags |
|
When you add files to a repository, and have no yet STAGED them (ie: run git add) they will be 'untracked'.
- Add a file named
asdfasdf.md - Run
git status
If you don't want to save the files, you can remove them using git clean
git clean -f .