1gitignore(5) 2============ 3 4NAME 5---- 6gitignore - Specifies intentionally untracked files to ignore 7 8SYNOPSIS 9-------- 10$GIT_DIR/info/exclude, .gitignore 11 12DESCRIPTION 13----------- 14 15A `gitignore` file specifies intentionally untracked files that 16Git should ignore. 17Files already tracked by Git are not affected; see the NOTES 18below for details. 19 20Each line in a `gitignore` file specifies a pattern. 21When deciding whether to ignore a path, Git normally checks 22`gitignore` patterns from multiple sources, with the following 23order of precedence, from highest to lowest (within one level of 24precedence, the last matching pattern decides the outcome): 25 26 * Patterns read from the command line for those commands that support 27 them. 28 29 * Patterns read from a `.gitignore` file in the same directory 30 as the path, or in any parent directory, with patterns in the 31 higher level files (up to the toplevel of the work tree) being overridden 32 by those in lower level files down to the directory containing the file. 33 These patterns match relative to the location of the 34 `.gitignore` file. A project normally includes such 35 `.gitignore` files in its repository, containing patterns for 36 files generated as part of the project build. 37 38 * Patterns read from `$GIT_DIR/info/exclude`. 39 40 * Patterns read from the file specified by the configuration 41 variable 'core.excludesfile'. 42 43Which file to place a pattern in depends on how the pattern is meant to 44be used. 45 46 * Patterns which should be version-controlled and distributed to 47 other repositories via clone (i.e., files that all developers will want 48 to ignore) should go into a `.gitignore` file. 49 50 * Patterns which are 51 specific to a particular repository but which do not need to be shared 52 with other related repositories (e.g., auxiliary files that live inside 53 the repository but are specific to one user's workflow) should go into 54 the `$GIT_DIR/info/exclude` file. 55 56 * Patterns which a user wants Git to 57 ignore in all situations (e.g., backup or temporary files generated by 58 the user's editor of choice) generally go into a file specified by 59 `core.excludesfile` in the user's `~/.gitconfig`. Its default value is 60 $XDG_CONFIG_HOME/git/ignore. If $XDG_CONFIG_HOME is either not set or 61 empty, $HOME/.config/git/ignore is used instead. 62 63The underlying Git plumbing tools, such as 64'git ls-files' and 'git read-tree', read 65`gitignore` patterns specified by command-line options, or from 66files specified by command-line options. Higher-level Git 67tools, such as 'git status' and 'git add', 68use patterns from the sources specified above. 69 70PATTERN FORMAT 71-------------- 72 73 - A blank line matches no files, so it can serve as a separator 74 for readability. 75 76 - A line starting with # serves as a comment. 77 Put a backslash ("`\`") in front of the first hash for patterns 78 that begin with a hash. 79 80 - Trailing spaces are ignored unless they are quoted with backlash 81 ("`\`"). 82 83 - An optional prefix "`!`" which negates the pattern; any 84 matching file excluded by a previous pattern will become 85 included again. If a negated pattern matches, this will 86 override lower precedence patterns sources. 87 Put a backslash ("`\`") in front of the first "`!`" for patterns 88 that begin with a literal "`!`", for example, "`\!important!.txt`". 89 90 - If the pattern ends with a slash, it is removed for the 91 purpose of the following description, but it would only find 92 a match with a directory. In other words, `foo/` will match a 93 directory `foo` and paths underneath it, but will not match a 94 regular file or a symbolic link `foo` (this is consistent 95 with the way how pathspec works in general in Git). 96 97 - If the pattern does not contain a slash '/', Git treats it as 98 a shell glob pattern and checks for a match against the 99 pathname relative to the location of the `.gitignore` file 100 (relative to the toplevel of the work tree if not from a 101 `.gitignore` file). 102 103 - Otherwise, Git treats the pattern as a shell glob suitable 104 for consumption by fnmatch(3) with the FNM_PATHNAME flag: 105 wildcards in the pattern will not match a / in the pathname. 106 For example, "Documentation/{asterisk}.html" matches 107 "Documentation/git.html" but not "Documentation/ppc/ppc.html" 108 or "tools/perf/Documentation/perf.html". 109 110 - A leading slash matches the beginning of the pathname. 111 For example, "/{asterisk}.c" matches "cat-file.c" but not 112 "mozilla-sha1/sha1.c". 113 114Two consecutive asterisks ("`**`") in patterns matched against 115full pathname may have special meaning: 116 117 - A leading "`**`" followed by a slash means match in all 118 directories. For example, "`**/foo`" matches file or directory 119 "`foo`" anywhere, the same as pattern "`foo`". "`**/foo/bar`" 120 matches file or directory "`bar`" anywhere that is directly 121 under directory "`foo`". 122 123 - A trailing "`/**`" matches everything inside. For example, 124 "`abc/**`" matches all files inside directory "`abc`", relative 125 to the location of the `.gitignore` file, with infinite depth. 126 127 - A slash followed by two consecutive asterisks then a slash 128 matches zero or more directories. For example, "`a/**/b`" 129 matches "`a/b`", "`a/x/b`", "`a/x/y/b`" and so on. 130 131 - Other consecutive asterisks are considered invalid. 132 133NOTES 134----- 135 136The purpose of gitignore files is to ensure that certain files 137not tracked by Git remain untracked. 138 139To ignore uncommitted changes in a file that is already tracked, 140use 'git update-index {litdd}assume-unchanged'. 141 142To stop tracking a file that is currently tracked, use 143'git rm --cached'. 144 145EXAMPLES 146-------- 147 148-------------------------------------------------------------- 149 $ git status 150 [...] 151 # Untracked files: 152 [...] 153 # Documentation/foo.html 154 # Documentation/gitignore.html 155 # file.o 156 # lib.a 157 # src/internal.o 158 [...] 159 $ cat .git/info/exclude 160 # ignore objects and archives, anywhere in the tree. 161 *.[oa] 162 $ cat Documentation/.gitignore 163 # ignore generated html files, 164 *.html 165 # except foo.html which is maintained by hand 166 !foo.html 167 $ git status 168 [...] 169 # Untracked files: 170 [...] 171 # Documentation/foo.html 172 [...] 173-------------------------------------------------------------- 174 175Another example: 176 177-------------------------------------------------------------- 178 $ cat .gitignore 179 vmlinux* 180 $ ls arch/foo/kernel/vm* 181 arch/foo/kernel/vmlinux.lds.S 182 $ echo '!/vmlinux*' >arch/foo/kernel/.gitignore 183-------------------------------------------------------------- 184 185The second .gitignore prevents Git from ignoring 186`arch/foo/kernel/vmlinux.lds.S`. 187 188SEE ALSO 189-------- 190linkgit:git-rm[1], 191linkgit:git-update-index[1], 192linkgit:gitrepository-layout[5], 193linkgit:git-check-ignore[1] 194 195GIT 196--- 197Part of the linkgit:git[1] suite