rename dirlink to gitlink.

Unify naming of plumbing dirlink/gitlink concept:

git ls-files -z '*.[ch]' |
xargs -0 perl -pi -e 's/dirlink/gitlink/g;' -e 's/DIRLNK/GITLINK/g;'

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Martin Waitz
2007-05-21 22:08:28 +02:00
committed by Junio C Hamano
parent fbf5df024e
commit 302b9282c9
14 changed files with 27 additions and 27 deletions

View File

@ -60,7 +60,7 @@ static int show_tree(const unsigned char *sha1, const char *base, int baselen,
int retval = 0;
const char *type = blob_type;
if (S_ISDIRLNK(mode)) {
if (S_ISGITLINK(mode)) {
/*
* Maybe we want to have some recursive version here?
*