blob: 75fb54339397c1bd8a38bd2bcc62eb6469645986 [file] [log] [blame]
Junio C Hamano60d00632006-04-05 10:34:431git-clean(1)
2============
3
4NAME
5----
6git-clean - Remove untracked files from the working tree
7
8SYNOPSIS
9--------
10[verse]
Junio C Hamano58f587a2013-07-22 19:20:5911'git clean' [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <path>...
Junio C Hamano60d00632006-04-05 10:34:4312
13DESCRIPTION
14-----------
Junio C Hamanoe91ea772009-04-26 01:41:4115
Junio C Hamanobde411d2009-05-07 05:07:3116Cleans the working tree by recursively removing files that are not
17under version control, starting from the current directory.
Junio C Hamanoe91ea772009-04-26 01:41:4118
Junio C Hamano076ffcc2013-02-06 05:13:2119Normally, only files unknown to Git are removed, but if the '-x'
Junio C Hamanoe91ea772009-04-26 01:41:4120option is specified, ignored files are also removed. This can, for
21example, be useful to remove all build products.
22
Junio C Hamano9e395072008-07-31 22:11:2123If any optional `<path>...` arguments are given, only those paths
24are affected.
Junio C Hamano26a57372006-05-10 00:13:4025
Junio C Hamano60d00632006-04-05 10:34:4326OPTIONS
27-------
28-d::
29Remove untracked directories in addition to untracked files.
Junio C Hamano076ffcc2013-02-06 05:13:2130If an untracked directory is managed by a different Git
Junio C Hamanoac34f562009-08-16 19:04:0531repository, it is not removed by default. Use -f option twice
32if you really want to remove such a directory.
Junio C Hamano60d00632006-04-05 10:34:4333
Junio C Hamano47b9acd2007-04-24 07:34:3434-f::
Junio C Hamano68cfa3a2009-08-30 00:22:5535--force::
Junio C Hamano076ffcc2013-02-06 05:13:2136If the Git configuration variable clean.requireForce is not set
Junio C Hamano58f587a2013-07-22 19:20:5937to false, 'git clean' will refuse to run unless given -f, -n or
38-i.
39
40-i::
41--interactive::
42Show what would be done and clean files interactively. See
43``Interactive mode'' for details.
Junio C Hamano47b9acd2007-04-24 07:34:3444
Junio C Hamano60d00632006-04-05 10:34:4345-n::
Junio C Hamanoeb415992008-06-08 22:49:4746--dry-run::
Junio C Hamano60d00632006-04-05 10:34:4347Don't actually remove anything, just show what would be done.
48
49-q::
Junio C Hamanoeb415992008-06-08 22:49:4750--quiet::
Junio C Hamano60d00632006-04-05 10:34:4351Be quiet, only report errors, but not the files that are
52successfully removed.
53
Junio C Hamano619596a2010-08-18 22:15:3554-e <pattern>::
55--exclude=<pattern>::
Junio C Hamano7bd050f2011-09-22 06:32:2256In addition to those found in .gitignore (per directory) and
57$GIT_DIR/info/exclude, also consider these patterns to be in the
58set of the ignore rules in effect.
Junio C Hamano619596a2010-08-18 22:15:3559
Junio C Hamano60d00632006-04-05 10:34:4360-x::
Junio C Hamano7bd050f2011-09-22 06:32:2261Don't use the standard ignore rules read from .gitignore (per
62directory) and $GIT_DIR/info/exclude, but do still use the ignore
63rules given with `-e` options. This allows removing all untracked
Junio C Hamano60d00632006-04-05 10:34:4364files, including build products. This can be used (possibly in
Junio C Hamano1aa40d22010-01-21 17:46:4365conjunction with 'git reset') to create a pristine
Junio C Hamano60d00632006-04-05 10:34:4366working directory to test a clean build.
67
68-X::
Junio C Hamano076ffcc2013-02-06 05:13:2169Remove only files ignored by Git. This may be useful to rebuild
Junio C Hamano60d00632006-04-05 10:34:4370everything from scratch, but keep manually created files.
71
Junio C Hamano58f587a2013-07-22 19:20:5972Interactive mode
73----------------
74When the command enters the interactive mode, it shows the
75files and directories to be cleaned, and goes into its
76interactive command loop.
77
78The command loop shows the list of subcommands available, and
79gives a prompt "What now> ". In general, when the prompt ends
80with a single '>', you can pick only one of the choices given
81and type return, like this:
82
83------------
84 *** Commands ***
851: clean 2: filter by pattern 3: select by numbers
864: ask each 5: quit 6: help
87 What now> 1
88------------
89
90You also could say `c` or `clean` above as long as the choice is unique.
91
92The main command loop has 6 subcommands.
93
94clean::
95
96 Start cleaning files and directories, and then quit.
97
98filter by pattern::
99
100 This shows the files and directories to be deleted and issues an
101 "Input ignore patterns>>" prompt. You can input space-seperated
102 patterns to exclude files and directories from deletion.
103 E.g. "*.c *.h" will excludes files end with ".c" and ".h" from
104 deletion. When you are satisfied with the filtered result, press
105 ENTER (empty) back to the main menu.
106
107select by numbers::
108
109 This shows the files and directories to be deleted and issues an
110 "Select items to delete>>" prompt. When the prompt ends with double
111 '>>' like this, you can make more than one selection, concatenated
112 with whitespace or comma. Also you can say ranges. E.g. "2-5 7,9"
113 to choose 2,3,4,5,7,9 from the list. If the second number in a
114 range is omitted, all remaining patches are taken. E.g. "7-" to
115 choose 7,8,9 from the list. You can say '*' to choose everything.
116 Also when you are satisfied with the filtered result, press ENTER
117 (empty) back to the main menu.
118
119ask each::
120
121 This will start to clean, and you must confirm one by one in order
122 to delete items. Please note that this action is not as efficient
123 as the above two actions.
124
125quit::
126
127 This lets you quit without do cleaning.
128
129help::
130
131 Show brief usage of interactive git-clean.
132
Junio C Hamano4f07aec2012-09-25 19:08:44133SEE ALSO
134--------
135linkgit:gitignore[5]
136
Junio C Hamano60d00632006-04-05 10:34:43137GIT
138---
Junio C Hamanof7c042d2008-06-06 22:50:53139Part of the linkgit:git[1] suite