Code

In perforce, RCS keywords are case-sensitive
authorDaniel Barkalow <barkalow@iabervon.org>
Tue, 22 Jul 2008 16:48:57 +0000 (12:48 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Jul 2008 18:33:34 +0000 (11:33 -0700)
At least, this is true in 2007.2, according to the documentation.

Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/fast-import/git-p4

index 87ca51e401cc7f00a2e75acdc205fc49ee54231b..6ae0429c2dde435f8ae33991ad10f40485aefdc6 100755 (executable)
@@ -906,7 +906,7 @@ class P4Sync(Command):
             if stat['type'] in ('text+ko', 'unicode+ko', 'binary+ko'):
                 text = re.sub(r'(?i)\$(Id|Header):[^$]*\$',r'$\1$', text)
             elif stat['type'] in ('text+k', 'ktext', 'kxtext', 'unicode+k', 'binary+k'):
-                text = re.sub(r'(?i)\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$]*\$',r'$\1$', text)
+                text = re.sub(r'\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$]*\$',r'$\1$', text)
 
             contents[stat['depotFile']] = text