mirror of
https://github.com/git/git.git
synced 2024-11-18 22:23:55 +01:00
Merge branch 'dl/p4-encode-after-kw-expansion'
Text encoding fix for "git p4". * dl/p4-encode-after-kw-expansion: git-p4: fix syncing file types with pattern
This commit is contained in:
commit
453e149c8a
@ -3031,7 +3031,7 @@ class P4Sync(Command, P4UserMap):
|
||||
regexp = re.compile(pattern, re.VERBOSE)
|
||||
text = ''.join(decode_text_stream(c) for c in contents)
|
||||
text = regexp.sub(r'$\1$', text)
|
||||
contents = [ text ]
|
||||
contents = [ encode_text_stream(text) ]
|
||||
|
||||
if self.largeFileSystem:
|
||||
(git_mode, contents) = self.largeFileSystem.processContent(git_mode, relPath, contents)
|
||||
|
Loading…
Reference in New Issue
Block a user