logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Git Clean - Remove Untracked Files | Online Free DevTools by Hexmos

Delete untracked files with Git Clean. Remove unwanted files and directories from your Git working directory effortlessly. Free online tool, no registration required.

git-clean

Remove files not tracked by Git from the working tree. More information: https://git-scm.com/docs/git-clean.

  • Delete untracked files:

git clean

  • Interactively delete untracked files:

git clean {{[-i|--interactive]}}

  • Show which files would be deleted without actually deleting them:

git clean {{[-n|--dry-run]}}

  • Forcefully delete untracked files:

git clean {{[-f|--force]}}

  • Forcefully delete untracked [d]irectories:

git clean {{[-f|--force]}} -d

  • Delete untracked files, including e[x]cluded files (files ignored in .gitignore and .git/info/exclude):

git clean -x

See Also