diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-10-26 15:55:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-26 15:55:25 -0700 |
commit | fa46579555583a9799d8495f632b14cddd65db6e (patch) | |
tree | a2f1155dfc4bd642795ec59e943776ef68e26f67 /cache.h | |
parent | 9d4a0692dcd528501ced5cfde64bd9af1b67d803 (diff) | |
parent | 067fbd4105c5aa8260a73cc6961854be0e93fa03 (diff) | |
download | git-fa46579555583a9799d8495f632b14cddd65db6e.tar.gz |
Merge branch 'jk/repository-extension'
Prepare for Git on-disk repository representation to undergo
backward incompatible changes by introducing a new repository
format version "1", with an extension mechanism.
* jk/repository-extension:
introduce "preciousObjects" repository extension
introduce "extensions" form of core.repositoryformatversion
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -697,8 +697,15 @@ extern char *notes_ref_name; extern int grafts_replace_parents; +/* + * GIT_REPO_VERSION is the version we write by default. The + * _READ variant is the highest number we know how to + * handle. + */ #define GIT_REPO_VERSION 0 +#define GIT_REPO_VERSION_READ 1 extern int repository_format_version; +extern int repository_format_precious_objects; extern int check_repository_format(void); #define MTIME_CHANGED 0x0001 |