From: "Scott Guest via GitGitGadget" <gitgitgadget@gmail.com>
To: git@vger.kernel.org
Cc: Scott Guest <scottguest02@gmail.com>, Scott Guest <sguest@nvidia.com>
Subject: [PATCH] git-p4: preserve executable bit in LFS pointers
Date: Tue, 06 May 2025 23:29:48 +0000 [thread overview]
Message-ID: <pull.1917.git.1746574189008.gitgitgadget@gmail.com> (raw)
From: Scott Guest <sguest@nvidia.com>
git-p4.py currently marks all Git LFS pointers non-executable,
when it should instead match the executable bit of the stored file.
The LFS spec made this change nearly a decade ago, see
https://github.com/git-lfs/git-lfs/commit/8d075a8
Signed-off-by: Scott Guest <sguest@nvidia.com>
---
git-p4: preserve executable bit in LFS pointers
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1917%2FScott-Guest%2Fp4-lfs-exec-fix-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1917/Scott-Guest/p4-lfs-exec-fix-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1917
git-p4.py | 34 +++++++++++++---------------------
1 file changed, 13 insertions(+), 21 deletions(-)
diff --git a/git-p4.py b/git-p4.py
index c0ca7becaf4..adfb5988492 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -1463,7 +1463,7 @@ class LargeFileSystem(object):
self.largeFiles = set()
self.writeToGitStream = writeToGitStream
- def generatePointer(self, cloneDestination, contentFile):
+ def generatePointer(self, contentFile):
"""Return the content of a pointer file that is stored in Git instead
of the actual content.
"""
@@ -1517,20 +1517,14 @@ class LargeFileSystem(object):
def isLargeFile(self, relPath):
return relPath in self.largeFiles
- def processContent(self, git_mode, relPath, contents):
+ def processContent(self, relPath, contents):
"""Processes the content of git fast import. This method decides if a
file is stored in the large file system and handles all necessary
steps.
"""
- # symlinks aren't processed by smudge/clean filters
- if git_mode == "120000":
- return (git_mode, contents)
-
if self.exceedsLargeFileThreshold(relPath, contents) or self.hasLargeFileExtension(relPath):
contentTempFile = self.generateTempFile(contents)
- pointer_git_mode, contents, localLargeFile = self.generatePointer(contentTempFile)
- if pointer_git_mode:
- git_mode = pointer_git_mode
+ contents, localLargeFile = self.generatePointer(contentTempFile)
if localLargeFile:
# Move temp file to final location in large file system
largeFileDir = os.path.dirname(localLargeFile)
@@ -1542,7 +1536,7 @@ class LargeFileSystem(object):
self.pushFile(localLargeFile)
if verbose:
sys.stderr.write("%s moved to large file system (%s)\n" % (relPath, localLargeFile))
- return (git_mode, contents)
+ return contents
class MockLFS(LargeFileSystem):
@@ -1555,10 +1549,9 @@ class MockLFS(LargeFileSystem):
"""
with open(contentFile, 'r') as f:
content = next(f)
- gitMode = '100644'
pointerContents = 'pointer-' + content
localLargeFile = os.path.join(os.getcwd(), '.git', 'mock-storage', 'local', content[:-1])
- return (gitMode, pointerContents, localLargeFile)
+ return (pointerContents, localLargeFile)
def pushFile(self, localLargeFile):
"""The remote filename of the large file storage is the same as the
@@ -1586,7 +1579,7 @@ class GitLFS(LargeFileSystem):
content.
"""
if os.path.getsize(contentFile) == 0:
- return (None, '', None)
+ return ('', None)
pointerProcess = subprocess.Popen(
['git', 'lfs', 'pointer', '--file=' + contentFile],
@@ -1616,9 +1609,7 @@ class GitLFS(LargeFileSystem):
'objects', oid[:2], oid[2:4],
oid,
)
- # LFS Spec states that pointer files should not have the executable bit set.
- gitMode = '100644'
- return (gitMode, pointerFile, localLargeFile)
+ return (pointerFile, localLargeFile)
def pushFile(self, localLargeFile):
uploadProcess = subprocess.Popen(
@@ -1652,12 +1643,12 @@ class GitLFS(LargeFileSystem):
LargeFileSystem.removeLargeFile(self, relPath)
self.writeToGitStream('100644', '.gitattributes', self.generateGitAttributes())
- def processContent(self, git_mode, relPath, contents):
+ def processContent(self, relPath, contents):
if relPath == '.gitattributes':
self.baseGitAttributes = contents
- return (git_mode, self.generateGitAttributes())
+ return self.generateGitAttributes()
else:
- return LargeFileSystem.processContent(self, git_mode, relPath, contents)
+ return LargeFileSystem.processContent(self, relPath, contents)
class Command:
@@ -3217,8 +3208,9 @@ class P4Sync(Command, P4UserMap):
if regexp:
contents = [regexp.sub(br'$\1$', c) for c in contents]
- if self.largeFileSystem:
- git_mode, contents = self.largeFileSystem.processContent(git_mode, relPath, contents)
+ # symlinks aren't processed by smudge/clean filters
+ if git_mode != '120000' and self.largeFileSystem:
+ contents = self.largeFileSystem.processContent(relPath, contents)
self.writeToGitStream(git_mode, relPath, contents)
base-commit: 6c0bd1fc70efaf053abe4e57c976afdc72d15377
--
gitgitgadget
reply other threads:[~2025-05-06 23:29 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=pull.1917.git.1746574189008.gitgitgadget@gmail.com \
--to=gitgitgadget@gmail.com \
--cc=git@vger.kernel.org \
--cc=scottguest02@gmail.com \
--cc=sguest@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.