diff options
author | Anand Kumria <wildfire@progsoc.org> | 2008-08-10 19:26:32 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-11 18:57:04 -0700 |
commit | 3cafb7d8ce63effe6bf477182d431ecb4470eded (patch) | |
tree | f0ea233bfdf6b7046b214c6a450a1ae98a66470d /contrib/fast-import | |
parent | abcaf07360357cf2e9ce4b34e44adc09bb5587f0 (diff) | |
download | git-3cafb7d8ce63effe6bf477182d431ecb4470eded.tar.gz git-3cafb7d8ce63effe6bf477182d431ecb4470eded.tar.xz |
Consistently use 'git-p4' for the configuration entries
Signed-off-by: Anand Kumria <wildfire@progsoc.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/fast-import')
-rwxr-xr-x | contrib/fast-import/git-p4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index a927e50b2..6c64224b7 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -1444,7 +1444,7 @@ class P4Sync(Command): if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes and gitBranchExists(self.branch): system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch)) - if self.useClientSpec or gitConfig("p4.useclientspec") == "true": + if self.useClientSpec or gitConfig("git-p4.useclientspec") == "true": self.getClientSpec() # TODO: should always look at previous commits, |