2006-04-05 08:00:48 +02:00
|
|
|
git-clean(1)
|
|
|
|
============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-clean - Remove untracked files from the working tree
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
2008-07-30 11:33:43 +02:00
|
|
|
'git clean' [-d] [-f] [-n] [-q] [-x | -X] [--] <path>...
|
2006-04-05 08:00:48 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Removes files unknown to git. This allows to clean the working tree
|
|
|
|
from files that are not under version control. If the '-x' option is
|
|
|
|
specified, ignored files are also removed, allowing to remove all
|
|
|
|
build products.
|
2008-07-30 11:33:43 +02:00
|
|
|
If any optional `<path>...` arguments are given, only those paths
|
|
|
|
are affected.
|
2006-05-08 21:02:44 +02:00
|
|
|
|
2006-04-05 08:00:48 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-d::
|
|
|
|
Remove untracked directories in addition to untracked files.
|
|
|
|
|
2007-04-24 02:18:16 +02:00
|
|
|
-f::
|
2007-05-06 20:09:34 +02:00
|
|
|
If the git configuration specifies clean.requireForce as true,
|
2008-07-03 07:41:41 +02:00
|
|
|
'git-clean' will refuse to run unless given -f or -n.
|
2007-04-24 02:18:16 +02:00
|
|
|
|
2006-04-05 08:00:48 +02:00
|
|
|
-n::
|
2008-06-08 03:36:10 +02:00
|
|
|
--dry-run::
|
2006-04-05 08:00:48 +02:00
|
|
|
Don't actually remove anything, just show what would be done.
|
|
|
|
|
|
|
|
-q::
|
2008-06-08 03:36:10 +02:00
|
|
|
--quiet::
|
2006-04-05 08:00:48 +02:00
|
|
|
Be quiet, only report errors, but not the files that are
|
|
|
|
successfully removed.
|
|
|
|
|
|
|
|
-x::
|
|
|
|
Don't use the ignore rules. This allows removing all untracked
|
|
|
|
files, including build products. This can be used (possibly in
|
2008-07-03 07:41:41 +02:00
|
|
|
conjunction with 'git-reset') to create a pristine
|
2006-04-05 08:00:48 +02:00
|
|
|
working directory to test a clean build.
|
|
|
|
|
|
|
|
-X::
|
|
|
|
Remove only files ignored by git. This may be useful to rebuild
|
|
|
|
everything from scratch, but keep manually created files.
|
|
|
|
|
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Pavel Roskin <proski@gnu.org>
|
|
|
|
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|