aboutsummaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>2011-02-12 14:24:10 +0100
committerJunio C Hamano <gitster@pobox.com>2011-02-13 15:13:41 -0800
commit6390c905dc6c6b0ca898689ee04a9cd6ac2f0b68 (patch)
tree16a45981fb80cb8d72ba44489654341d5c07b0bb /builtin
parent00e6ee724640701b32aca27cc930fd6409c87ae2 (diff)
downloadgit-6390c905dc6c6b0ca898689ee04a9cd6ac2f0b68.tar.gz
git-6390c905dc6c6b0ca898689ee04a9cd6ac2f0b68.tar.xz
repo-config: add deprecation warning
repo-config was deprecated in 5c66d0d4 on 2008-01-17. Warn the remaining users that it has been replaced by config and is going to be removed eventually. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/config.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/builtin/config.c b/builtin/config.c
index ca4a0db4a..dad86fecf 100644
--- a/builtin/config.c
+++ b/builtin/config.c
@@ -500,3 +500,9 @@ int cmd_config(int argc, const char **argv, const char *prefix)
return 0;
}
+
+int cmd_repo_config(int argc, const char **argv, const char *prefix)
+{
+ fprintf(stderr, "WARNING: git repo-config is deprecated in favor of git config.\n");
+ return cmd_config(argc, argv, prefix);
+}