diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-12-27 00:11:46 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-12-27 00:11:46 -0800 |
commit | 7143258d79031648507a8066603ef04ec4413a21 (patch) | |
tree | 2af760296f2158928ec8ab6d29acf844e1998bfd /git-p4.py | |
parent | eef32a0653f9b4e90ace46c9f041ff41dbf4e632 (diff) | |
parent | 862f9312b3c910e5c8df6f96591fd3565d5a64ee (diff) | |
download | git-7143258d79031648507a8066603ef04ec4413a21.tar.gz |
Merge branch 'ls/p4-lfs'
Update GitLFS integration with "git p4".
* ls/p4-lfs:
git-p4: add diff/merge properties to .gitattributes for GitLFS files
Diffstat (limited to 'git-p4.py')
-rwxr-xr-x | git-p4.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1120,10 +1120,10 @@ class GitLFS(LargeFileSystem): '# Git LFS (see https://git-lfs.github.com/)\n', '#\n', ] + - ['*.' + f.replace(' ', '[[:space:]]') + ' filter=lfs -text\n' + ['*.' + f.replace(' ', '[[:space:]]') + ' filter=lfs diff=lfs merge=lfs -text\n' for f in sorted(gitConfigList('git-p4.largeFileExtensions')) ] + - ['/' + f.replace(' ', '[[:space:]]') + ' filter=lfs -text\n' + ['/' + f.replace(' ', '[[:space:]]') + ' filter=lfs diff=lfs merge=lfs -text\n' for f in sorted(self.largeFiles) if not self.hasLargeFileExtension(f) ] ) |