113

I have created a white-list for text files only.

*
!*.txt

Now, I have an untracked text file in a sub-directory - sub/dir/file.txt, and this is NOT shown (it is ignored). Text files in the root directory are shown, however.

Why is that, and how do I fix it?

9
  • 2
    Related: stackoverflow.com/q/987142/78845
    – johnsyweb
    Feb 6, 2012 at 16:09
  • Are the files you want to include in a sub directory? If so, this sub directory might be ignored already by the first star in your .gitignore.
    – fajran
    Feb 6, 2012 at 16:11
  • Yes. These files will be as low in the directory structure as the 11.1.102.55 folder in my example. The nesting is not always the same between folders/products.
    – Nate
    Feb 6, 2012 at 17:05
  • 2
    I know of this functionality. We have hundreds of directories. It would be faster to just explicitly ignore the filetypes we don't want than make one gitignore for each directory. I'm really looking for a way to get whitelist functionality out of the .gitignore file.
    – Nate
    Feb 6, 2012 at 19:11
  • 2
    I don't see how this is a duplicate. The other question asks how to whitelist certain files, while this one asks how to whitelist certain file types including subfolders. Actually, it is more like a duplicate of stackoverflow.com/questions/8024924/…. Apr 17, 2013 at 16:01

4 Answers 4

179

If you try it that way, it'll fail, because you'll end up blacklisting the directories in your structure.

To solve, you want to blacklist everything that is not a directory, and is not one of the file-types you want to commit, while not blacklisting directories.

The .gitignore file that will do this:

# First, ignore everything
*
# Now, whitelist anything that's a directory
!*/
# And all the file types you're interested in.
!*.one
!*.two
!*.etc

Tested this in a three-level structure white-listing for .txt files in the presence of *.one, *.two and *.three files using a .gitignore located in the root directory of the repository - works for me. You won't have to add .gitignore files to all directories in your structure.

Information I used to figure out the answer came from, amongst other things, this (stackoverflow.com).

3
  • 23
    You also need the entry !.gitignore, when using *, don't you?
    – sjas
    Aug 6, 2013 at 18:49
  • 4
    See my answer here: stackoverflow.com/questions/987142/… It may be more useful to use /* to blacklist just the top-level folder, but not all folders recursively, which actually means .gitignore shouldn't look into a whitelisted folder's subfolders. Jul 21, 2015 at 2:13
  • When I ignored everything using *, as in the second line of the example .gitignore file, and then unignored files and directories with the notation !./directory/ and !./file, and then tried to git add those files and directories, Git only added the files: git status showed the files as being staged, but said nothing about the directories. Also, for some reason, the command git branch did not output anything. But when I changed the first ignore pattern to /*, things started working as expected: both files and directories were added on git add, and git branch output master. Oct 26, 2022 at 18:50
8

A simpler way of achieving this is:

# Ignore all files...
*.*

# ...except the ones we want
!*.txt

This works because gitignore applies patterns that do not start with / to every level below the .gitignore file:

If there is a separator at the beginning or middle (or both) of the pattern, then the pattern is relative to the directory level of the particular .gitignore file itself. Otherwise the pattern may also match at any level below the .gitignore level.

If you wanted to do this to files inside a directory, things get more complex:

# Ignore all files in all directories inside subdir...
/subdir/**/*.*

# ...except the ones we want
!/subdir/**/*.txt

This works because gitignore has special rules for **:

Two consecutive asterisks ("**") in patterns matched against full pathname may have special meaning:

  • A slash followed by two consecutive asterisks then a slash matches zero or more directories. For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on.

The key piece is to make sure you don't ignore directories, because then every file within that directory is ignored regardless of other rules.

1
  • 2
    The comment for *.* is wrong. It should be "Ignore all files/folders which have a period." Glob patterns are not file-aware; they can only be made folder-aware by use of a trailing slash.
    – MonkeyZeus
    Aug 14, 2023 at 14:49
3

I searched for a long time:

  1. Assume I have a large folder structure with ~100.000 directories recursively nested. In those folders, there're about 30.000 files of type .txt (in my case: type *.md). Next to these *.md files, there're, lets say, 500GB of (a million+) files that I don't want to track.

  2. I want git to track only .txt (or *.md) files in all folders and subdirs.

The correct answer should be: this is not possible in Git.

What I did instead:

[edit: did also not work - I tried to create a folder with symlinks (or hardlinks) and use git there, but git doesn't follow symlinks and overwrites hardlinks. Doh!]

0

If you want to ignore everything in the repository except .txt files , .gitignore should be like:

# Ignore everything
*
# Whitelist every directories, so we can recurse into them
!*/
# Whitelist .gitignore and .txt
!.gitignore
!*.txt

But if you want to ignore just one folder of your repository and whitelist .txt files in any directory or subdirectory:

# Recursively ignore every files in my_folder
/my_folder/**
# Recursively whitelist every directories in my_folder
!/my_folder/**/
# Whitelist .txt
!*.txt

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.