Revision f2bd231414fc9c22307971bcc6c5a3a96dec75c1 authored by Junio C Hamano on 25 June 2015, 18:02:13 UTC, committed by Junio C Hamano on 25 June 2015, 18:02:13 UTC
The setup code used to die when core.bare and core.worktree are set
inconsistently, even for commands that do not need working tree.

* jk/die-on-bogus-worktree-late:
  setup_git_directory: delay core.bare/core.worktree errors
2 parent s 6356003 + fada767
Raw File
test-index-version.c
#include "cache.h"

int main(int argc, char **argv)
{
	struct cache_header hdr;
	int version;

	memset(&hdr,0,sizeof(hdr));
	if (read(0, &hdr, sizeof(hdr)) != sizeof(hdr))
		return 0;
	version = ntohl(hdr.hdr_version);
	printf("%d\n", version);
	return 0;
}
back to top