diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2011-02-12 14:24:10 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-02-13 15:13:41 -0800 |
commit | 6390c905dc6c6b0ca898689ee04a9cd6ac2f0b68 (patch) | |
tree | 16a45981fb80cb8d72ba44489654341d5c07b0bb /git.c | |
parent | 00e6ee724640701b32aca27cc930fd6409c87ae2 (diff) | |
download | git-6390c905dc6c6b0ca898689ee04a9cd6ac2f0b68.tar.gz |
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 'git.c')
-rw-r--r-- | git.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -392,7 +392,7 @@ static void handle_internal_command(int argc, const char **argv) { "remote-ext", cmd_remote_ext }, { "remote-fd", cmd_remote_fd }, { "replace", cmd_replace, RUN_SETUP }, - { "repo-config", cmd_config, RUN_SETUP_GENTLY }, + { "repo-config", cmd_repo_config, RUN_SETUP_GENTLY }, { "rerere", cmd_rerere, RUN_SETUP }, { "reset", cmd_reset, RUN_SETUP }, { "rev-list", cmd_rev_list, RUN_SETUP }, |