Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 1 | git-clean(1) |
| 2 | ============ |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-clean - Remove untracked files from the working tree |
| 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
| 10 | [verse] |
Jiang Xin | 1769600 | 2013-06-25 23:53:48 +0800 | [diff] [blame] | 11 | 'git clean' [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <path>... |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
Wesley J. Landaker | 911198f | 2009-04-25 09:13:41 -0600 | [diff] [blame] | 15 | |
Junio C Hamano | 6a260f5 | 2009-05-06 10:48:26 -0700 | [diff] [blame] | 16 | Cleans the working tree by recursively removing files that are not |
| 17 | under version control, starting from the current directory. |
Wesley J. Landaker | 911198f | 2009-04-25 09:13:41 -0600 | [diff] [blame] | 18 | |
Matthieu Moy | 23f8239 | 2016-06-28 13:40:10 +0200 | [diff] [blame] | 19 | Normally, only files unknown to Git are removed, but if the `-x` |
Wesley J. Landaker | 911198f | 2009-04-25 09:13:41 -0600 | [diff] [blame] | 20 | option is specified, ignored files are also removed. This can, for |
| 21 | example, be useful to remove all build products. |
| 22 | |
Abhijit Menon-Sen | f448e24 | 2008-07-30 15:03:43 +0530 | [diff] [blame] | 23 | If any optional `<path>...` arguments are given, only those paths |
| 24 | are affected. |
Junio C Hamano | 393e3b1 | 2006-05-08 12:02:44 -0700 | [diff] [blame] | 25 | |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 26 | OPTIONS |
| 27 | ------- |
| 28 | -d:: |
| 29 | Remove untracked directories in addition to untracked files. |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 30 | If an untracked directory is managed by a different Git |
Junio C Hamano | a0f4afb | 2009-06-30 15:33:45 -0700 | [diff] [blame] | 31 | repository, it is not removed by default. Use -f option twice |
| 32 | if you really want to remove such a directory. |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 33 | |
Josh Triplett | 2122591 | 2007-04-23 17:18:16 -0700 | [diff] [blame] | 34 | -f:: |
René Scharfe | f7aec12 | 2009-08-29 11:05:00 +0200 | [diff] [blame] | 35 | --force:: |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 36 | If the Git configuration variable clean.requireForce is not set |
Mikko Rapeli | bcd57cb | 2015-02-26 15:16:49 +0200 | [diff] [blame] | 37 | to false, 'git clean' will refuse to delete files or directories |
| 38 | unless given -f, -n or -i. Git will refuse to delete directories |
| 39 | with .git sub directory or file unless a second -f |
Matt McCutchen | 31e3c2d | 2016-02-06 15:25:41 -0500 | [diff] [blame] | 40 | is given. |
Jiang Xin | 1769600 | 2013-06-25 23:53:48 +0800 | [diff] [blame] | 41 | |
| 42 | -i:: |
| 43 | --interactive:: |
Jiang Xin | c0be6b4 | 2013-06-25 23:53:55 +0800 | [diff] [blame] | 44 | Show what would be done and clean files interactively. See |
| 45 | ``Interactive mode'' for details. |
Josh Triplett | 2122591 | 2007-04-23 17:18:16 -0700 | [diff] [blame] | 46 | |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 47 | -n:: |
Stephan Beyer | 459cf2e | 2008-06-08 03:36:10 +0200 | [diff] [blame] | 48 | --dry-run:: |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 49 | Don't actually remove anything, just show what would be done. |
| 50 | |
| 51 | -q:: |
Stephan Beyer | 459cf2e | 2008-06-08 03:36:10 +0200 | [diff] [blame] | 52 | --quiet:: |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 53 | Be quiet, only report errors, but not the files that are |
| 54 | successfully removed. |
| 55 | |
Jared Hance | 07de4eb | 2010-07-20 15:35:56 -0400 | [diff] [blame] | 56 | -e <pattern>:: |
| 57 | --exclude=<pattern>:: |
Junio C Hamano | b619467 | 2011-08-25 11:29:57 -0700 | [diff] [blame] | 58 | In addition to those found in .gitignore (per directory) and |
| 59 | $GIT_DIR/info/exclude, also consider these patterns to be in the |
| 60 | set of the ignore rules in effect. |
Jared Hance | 07de4eb | 2010-07-20 15:35:56 -0400 | [diff] [blame] | 61 | |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 62 | -x:: |
Junio C Hamano | b619467 | 2011-08-25 11:29:57 -0700 | [diff] [blame] | 63 | Don't use the standard ignore rules read from .gitignore (per |
| 64 | directory) and $GIT_DIR/info/exclude, but do still use the ignore |
| 65 | rules given with `-e` options. This allows removing all untracked |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 66 | files, including build products. This can be used (possibly in |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 67 | conjunction with 'git reset') to create a pristine |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 68 | working directory to test a clean build. |
| 69 | |
| 70 | -X:: |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 71 | Remove only files ignored by Git. This may be useful to rebuild |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 72 | everything from scratch, but keep manually created files. |
| 73 | |
Jiang Xin | c0be6b4 | 2013-06-25 23:53:55 +0800 | [diff] [blame] | 74 | Interactive mode |
| 75 | ---------------- |
| 76 | When the command enters the interactive mode, it shows the |
| 77 | files and directories to be cleaned, and goes into its |
| 78 | interactive command loop. |
| 79 | |
| 80 | The command loop shows the list of subcommands available, and |
| 81 | gives a prompt "What now> ". In general, when the prompt ends |
| 82 | with a single '>', you can pick only one of the choices given |
| 83 | and type return, like this: |
| 84 | |
| 85 | ------------ |
| 86 | *** Commands *** |
| 87 | 1: clean 2: filter by pattern 3: select by numbers |
| 88 | 4: ask each 5: quit 6: help |
| 89 | What now> 1 |
| 90 | ------------ |
| 91 | |
| 92 | You also could say `c` or `clean` above as long as the choice is unique. |
| 93 | |
| 94 | The main command loop has 6 subcommands. |
| 95 | |
| 96 | clean:: |
| 97 | |
| 98 | Start cleaning files and directories, and then quit. |
| 99 | |
| 100 | filter by pattern:: |
| 101 | |
| 102 | This shows the files and directories to be deleted and issues an |
Thomas Ackermann | f745acb | 2014-11-03 21:37:07 +0100 | [diff] [blame] | 103 | "Input ignore patterns>>" prompt. You can input space-separated |
Jiang Xin | c0be6b4 | 2013-06-25 23:53:55 +0800 | [diff] [blame] | 104 | patterns to exclude files and directories from deletion. |
| 105 | E.g. "*.c *.h" will excludes files end with ".c" and ".h" from |
| 106 | deletion. When you are satisfied with the filtered result, press |
| 107 | ENTER (empty) back to the main menu. |
| 108 | |
| 109 | select by numbers:: |
| 110 | |
| 111 | This shows the files and directories to be deleted and issues an |
| 112 | "Select items to delete>>" prompt. When the prompt ends with double |
| 113 | '>>' like this, you can make more than one selection, concatenated |
| 114 | with whitespace or comma. Also you can say ranges. E.g. "2-5 7,9" |
| 115 | to choose 2,3,4,5,7,9 from the list. If the second number in a |
Jiang Xin | 309422e | 2013-07-24 06:22:43 +0800 | [diff] [blame] | 116 | range is omitted, all remaining items are selected. E.g. "7-" to |
Jiang Xin | c0be6b4 | 2013-06-25 23:53:55 +0800 | [diff] [blame] | 117 | choose 7,8,9 from the list. You can say '*' to choose everything. |
| 118 | Also when you are satisfied with the filtered result, press ENTER |
| 119 | (empty) back to the main menu. |
| 120 | |
| 121 | ask each:: |
| 122 | |
| 123 | This will start to clean, and you must confirm one by one in order |
| 124 | to delete items. Please note that this action is not as efficient |
| 125 | as the above two actions. |
| 126 | |
| 127 | quit:: |
| 128 | |
| 129 | This lets you quit without do cleaning. |
| 130 | |
| 131 | help:: |
| 132 | |
| 133 | Show brief usage of interactive git-clean. |
| 134 | |
Philip Oakley | 068c674 | 2012-09-19 00:25:33 +0100 | [diff] [blame] | 135 | SEE ALSO |
| 136 | -------- |
| 137 | linkgit:gitignore[5] |
| 138 | |
Pavel Roskin | c3b831b | 2006-04-05 02:00:48 -0400 | [diff] [blame] | 139 | GIT |
| 140 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 141 | Part of the linkgit:git[1] suite |