gpt4 book ai didi

git - 将文件注入(inject) git 存储库而不进行 check out

转载 作者:太空狗 更新时间:2023-10-29 13:56:59 25 4
gpt4 key购买 nike

我正在开发一个本地化框架,该框架管理库中多个应用程序(wpf、android、ios)的文本 Assets 。我们使用 git 作为所有应用程序的版本控制系统。现在我想将这些 Assets 直接导出到 git 存储库中。

问题是:我不想每次将 Assets 导出到 git 存储库时都克隆/pull 整个存储库。事实上,除了这些 Assets 之外,我不想知道任何文件。我已经发现使用 git 无法 check out 子目录,但是有没有一种方法可以将这些更改“注入(inject)”或“强制”到存储库中,而不必提取所有其他更改和文件? (注意: Assets 只是在这里更改,不是开发者直接编辑的)它应该基本上忽略 Assets 文件夹之外发生的一切。另一件重要的事情是,它不应该改变我们开发人员的工作流程,因此子模块并不是真正的选择,因为他们必须一直 pull 子模块。

除了 git 之外,有什么好的方法可以做到这一点吗?提前致谢!

最佳答案

只要存储库本身在本地可用,就可以编写无需检查工作树即可注入(inject) blob 的脚本。但这不是微不足道的。我以前写过这样的脚本,由于它的长度和它不是公开的,我将省略它,但基本上它涉及在循环中执行以下 git 命令(如果任何失败重新启动循环):

# Find the current head.
head="$(GIT_DIR="$repo" git show-ref --heads --hash master)"
# Get the current version of the file.
GIT_DIR="$repo" git cat-file blob "$head:path/to/file" >"$tmpdir/tempfile"
# [Modify the file if necessary.]
# Write the blob into the repository.
blob="$(GIT_DIR="$repo" git hash-object -w "$tmpdir/tempfile")"
# Read the tree into an index file.
GIT_INDEX_FILE="$index" GIT_DIR="$repo" git read-tree "$head"
# Add the ref of the blob into the index file.
GIT_INDEX_FILE="$index" GIT_DIR="$repo" git update-index --add \
--cacheinfo 100644 "$blob" path/to/file
# Write the index file into the repo as a tree.
tree="$(GIT_INDEX_FILE="$index" GIT_DIR="$repo" git write-tree)"
# Write a commit to the repo.
commit="$(echo "autocommit" |GIT_DIR="$repo" git comm it-tree "$tree" -p "$head")"
# Update the head of the repository to be the new commit.
GIT_DIR="$repo" git update-ref refs/heads/master "$commit" "$head"

这并不完整(我省略了一些重新启动循环的错误处理代码),但它不仅仅是伪代码。希望这足以对您有所帮助。与仅克隆存储库相比,这会产生更复杂的脚本,但速度要快得多。使用哪一个取决于您的需要。

顺便说一下,如果存储库在 NFS 上,锁定将无法正常工作,您必须检查竞争条件(您的引用可能会被重置,迫使您重新启动整个过程)。

关于git - 将文件注入(inject) git 存储库而不进行 check out ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9840908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com