* maint:
  setup: document prefix
This commit is contained in:
Junio C Hamano 2010-06-06 18:42:12 -07:00
Родитель 7c42e390a3 e1e5ec868f
Коммит 624016114e
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -546,6 +546,12 @@ int check_repository_format(void)
return check_repository_format_gently(NULL);
}
/*
* Returns the "prefix", a path to the current working directory
* relative to the work tree root, or NULL, if the current working
* directory is not a strict subdirectory of the work tree root. The
* prefix always ends with a '/' character.
*/
const char *setup_git_directory(void)
{
const char *retval = setup_git_directory_gently(NULL);