I have a GIT repository in a ~/foo
folder. Now, created a bar/
folder there with some contents, under ~/foo/public/bar/
. It is correctly recognized by GIT as untracked:
~/foo git status -s
?? public/bar/
I've always used git clean -fd
to delete untracked folders, but it doesn't work for some reason. When I run it, nothing happens:
~/foo git clean -fd
~/foo git status -s
?? public/bar/
Has something changed in GIT or am I missing something? I'm using GIT 2.32.0.
Folders themselves are entirely uninteresting to Git: only files are untracked (because only files are ever tracked either).1 So when
git status
says:it is hiding something. What it is hiding is the fact that there is at least one file underneath
public/bar/
somewhere.Running
git clean -fd
won't necessarily remove this untracked file. In particular, without-x
or-X
,git clean
avoids removing any ignored-while-untracked files.As IMSoP mentions in a comment, using
git status --untracked-files=all --ignored
would get us more information. We would see the names of the various files withinpublic/bar/
. Whatgit status
does here is note that there's no need to announce each file, one by one, when it can just summarize that there are multiple files by announcing the containing directorypublic/bar/
(with trailing slash).1This is not quite true, because of submodules, but it's close enough to let one think about the problem. Also, the
git clean
documentation talks about "untracked directories" under the description of the-d
option, so what does this even mean? The clue is in the description of of the-x
and-X
options:There's something missing here in general, which is how the ignore rules work. Even the gitignore documentation, which this refers to in the section I snipped, doesn't cover the key detail, which is:
.gitignore
file that ignore particular patterns—can list directory names, either explicitly with trailing slashes, or implicitly because a directory name matches some gitignore line.public/bar/
—would be ignored, Git can simply avoid opening that directory and reading it. There's no point: everything Git finds here would be ignored!The shortcut in the last bullet point saves time. In a large build, on typical modern systems, it can save literally seconds in a
git status
run (sometimes tens of seconds, or even greater orders of magnitude). So bothgit status
andgit clean
take advantage of this when possible. When they have to enumerate the actual files within some everything-will-be-ignored directory, though, they still have to open and read the directory.