]> git.ipfire.org Git - thirdparty/git.git/commit - setup.c
clean: make is_git_repository a public function
authorJeff King <peff@peff.net>
Fri, 22 Jan 2016 22:27:33 +0000 (17:27 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 25 Jan 2016 19:41:53 +0000 (11:41 -0800)
commitffd036b1286687589f5ce5513ee69c06ee53691e
tree44b7f409604b25f94a12d6f249a88ad1a4200487
parent1b0b6dd0720572dcf90c264aeb91f96a017b0f25
clean: make is_git_repository a public function

We have always had is_git_directory(), for looking at a
specific directory to see if it contains a git repo. In
0179ca7 (clean: improve performance when removing lots of
directories, 2015-06-15), we added is_git_repository() which
checks for a non-bare repository by looking at its ".git"
entry.

However, the fix in 0179ca7 needs to be applied other
places, too. Let's make this new helper globally available.
We need to give it a better name, though, to avoid confusion
with is_git_directory(). This patch does that, documents
both functions with a comment to reduce confusion, and
removes the clean-specific references in the comments.

Based-on-a-patch-by: Andreas Krey <a.krey@gmx.de>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/clean.c
cache.h
setup.c