| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [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] |
| Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame^] | 11 | 'git clean' [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <path>... |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
| Junio C Hamano | e91ea77 | 2009-04-26 01:41:41 | [diff] [blame] | 15 | |
| Junio C Hamano | bde411d | 2009-05-07 05:07:31 | [diff] [blame] | 16 | Cleans the working tree by recursively removing files that are not |
| 17 | under version control, starting from the current directory. |
| Junio C Hamano | e91ea77 | 2009-04-26 01:41:41 | [diff] [blame] | 18 | |
| Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 19 | Normally, only files unknown to Git are removed, but if the '-x' |
| Junio C Hamano | e91ea77 | 2009-04-26 01:41:41 | [diff] [blame] | 20 | option is specified, ignored files are also removed. This can, for |
| 21 | example, be useful to remove all build products. |
| 22 | |
| Junio C Hamano | 9e39507 | 2008-07-31 22:11:21 | [diff] [blame] | 23 | If any optional `<path>...` arguments are given, only those paths |
| 24 | are affected. |
| Junio C Hamano | 26a5737 | 2006-05-10 00:13:40 | [diff] [blame] | 25 | |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 26 | OPTIONS |
| 27 | ------- |
| 28 | -d:: |
| 29 | Remove untracked directories in addition to untracked files. |
| Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 30 | If an untracked directory is managed by a different Git |
| Junio C Hamano | ac34f56 | 2009-08-16 19:04:05 | [diff] [blame] | 31 | repository, it is not removed by default. Use -f option twice |
| 32 | if you really want to remove such a directory. |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 33 | |
| Junio C Hamano | 47b9acd | 2007-04-24 07:34:34 | [diff] [blame] | 34 | -f:: |
| Junio C Hamano | 68cfa3a | 2009-08-30 00:22:55 | [diff] [blame] | 35 | --force:: |
| Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 36 | If the Git configuration variable clean.requireForce is not set |
| Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame^] | 37 | to false, 'git clean' will refuse to run unless given -f, -n or |
| 38 | -i. |
| 39 | |
| 40 | -i:: |
| 41 | --interactive:: |
| 42 | Show what would be done and clean files interactively. See |
| 43 | ``Interactive mode'' for details. |
| Junio C Hamano | 47b9acd | 2007-04-24 07:34:34 | [diff] [blame] | 44 | |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 45 | -n:: |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 46 | --dry-run:: |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 47 | Don't actually remove anything, just show what would be done. |
| 48 | |
| 49 | -q:: |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 50 | --quiet:: |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 51 | Be quiet, only report errors, but not the files that are |
| 52 | successfully removed. |
| 53 | |
| Junio C Hamano | 619596a | 2010-08-18 22:15:35 | [diff] [blame] | 54 | -e <pattern>:: |
| 55 | --exclude=<pattern>:: |
| Junio C Hamano | 7bd050f | 2011-09-22 06:32:22 | [diff] [blame] | 56 | In addition to those found in .gitignore (per directory) and |
| 57 | $GIT_DIR/info/exclude, also consider these patterns to be in the |
| 58 | set of the ignore rules in effect. |
| Junio C Hamano | 619596a | 2010-08-18 22:15:35 | [diff] [blame] | 59 | |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 60 | -x:: |
| Junio C Hamano | 7bd050f | 2011-09-22 06:32:22 | [diff] [blame] | 61 | Don't use the standard ignore rules read from .gitignore (per |
| 62 | directory) and $GIT_DIR/info/exclude, but do still use the ignore |
| 63 | rules given with `-e` options. This allows removing all untracked |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 64 | files, including build products. This can be used (possibly in |
| Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 65 | conjunction with 'git reset') to create a pristine |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 66 | working directory to test a clean build. |
| 67 | |
| 68 | -X:: |
| Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 69 | Remove only files ignored by Git. This may be useful to rebuild |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 70 | everything from scratch, but keep manually created files. |
| 71 | |
| Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame^] | 72 | Interactive mode |
| 73 | ---------------- |
| 74 | When the command enters the interactive mode, it shows the |
| 75 | files and directories to be cleaned, and goes into its |
| 76 | interactive command loop. |
| 77 | |
| 78 | The command loop shows the list of subcommands available, and |
| 79 | gives a prompt "What now> ". In general, when the prompt ends |
| 80 | with a single '>', you can pick only one of the choices given |
| 81 | and type return, like this: |
| 82 | |
| 83 | ------------ |
| 84 | *** Commands *** |
| 85 | 1: clean 2: filter by pattern 3: select by numbers |
| 86 | 4: ask each 5: quit 6: help |
| 87 | What now> 1 |
| 88 | ------------ |
| 89 | |
| 90 | You also could say `c` or `clean` above as long as the choice is unique. |
| 91 | |
| 92 | The main command loop has 6 subcommands. |
| 93 | |
| 94 | clean:: |
| 95 | |
| 96 | Start cleaning files and directories, and then quit. |
| 97 | |
| 98 | filter 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 | |
| 107 | select 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 | |
| 119 | ask 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 | |
| 125 | quit:: |
| 126 | |
| 127 | This lets you quit without do cleaning. |
| 128 | |
| 129 | help:: |
| 130 | |
| 131 | Show brief usage of interactive git-clean. |
| 132 | |
| Junio C Hamano | 4f07aec | 2012-09-25 19:08:44 | [diff] [blame] | 133 | SEE ALSO |
| 134 | -------- |
| 135 | linkgit:gitignore[5] |
| 136 | |
| Junio C Hamano | 60d0063 | 2006-04-05 10:34:43 | [diff] [blame] | 137 | GIT |
| 138 | --- |
| Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 139 | Part of the linkgit:git[1] suite |