Search

git clean

Requirements
To follow this setup, it is required to have following …
No Requirements
Clean [git clean]
Cleans the working tree by recursively removing files that are not under version control, starting from the current directory.
Normally, only files unknown to Git are removed, but if the -x option is specified, ignored files are also removed. This can, for example, be useful to remove all build products.
Synopsis [git clean --<synopsis>]
git clean [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] [<pathspec>]
YAML
복사
Commonly Used Commands
Show clean list
git clean -n
git clean -nd
Default clean
git clean -df
Interactive clean
git clean -i

Reference