diff options
author | Shawn Pearce <spearce@spearce.org> | 2006-10-30 17:35:18 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-30 19:35:16 -0800 |
commit | 6fb75bed5c4a6ce099a24e581ea327e9de3ab8b0 (patch) | |
tree | c110b1b0d4a2d4a6bdaf4d957d9da9b6115b1efb /cache.h | |
parent | 79a65697be00f3b53430930078a7d34b591d5070 (diff) | |
download | git-6fb75bed5c4a6ce099a24e581ea327e9de3ab8b0.tar.gz git-6fb75bed5c4a6ce099a24e581ea327e9de3ab8b0.tar.xz |
Move deny_non_fast_forwards handling completely into receive-pack.
The 'receive.denynonfastforwards' option has nothing to do with
the repository format version. Since receive-pack already uses
git_config to initialize itself before executing any updates we
can use the normal configuration strategy and isolate the receive
specific variables away from the core variables.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -188,7 +188,6 @@ extern int prefer_symlink_refs; extern int log_all_ref_updates; extern int warn_ambiguous_refs; extern int shared_repository; -extern int deny_non_fast_forwards; extern const char *apply_default_whitespace; extern int zlib_compression_level; |