diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-04-12 19:17:51 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-12 19:17:51 -0700 |
commit | f43e2fd43b50d5a82a34bb3e4f848cb38bf93b7f (patch) | |
tree | b29df95a9ea15dc54263921f63077c62058d6c22 /remote.c | |
parent | git_config_bool_or_int() (diff) | |
parent | t7401: squelch garbage output (diff) | |
download | tgif-f43e2fd43b50d5a82a34bb3e4f848cb38bf93b7f.tar.xz |
Merge branch 'maint'
* maint:
t7401: squelch garbage output
Documentation/git-submodule: typofix
Fix config key miscount in url.*.insteadOf
Docs gitk: Explicitly mention the files that gitk uses (~/.gitk)
Document -w option to shortlog
bisect: report bad rev better
Diffstat (limited to 'remote.c')
-rw-r--r-- | remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -315,7 +315,7 @@ static int handle_config(const char *key, const char *value) } if (!prefixcmp(key, "url.")) { struct rewrite *rewrite; - name = key + 5; + name = key + 4; subkey = strrchr(name, '.'); if (!subkey) return 0; |