我们有一种情况是使用 git 来存储无数扫描(图像),并且不希望在设置后将它们保存在本地机器上;但是,git 将每个本地删除(在此过程之后)视为要提交给 repo 的内容,我们希望这种情况不会发生。关于如何只提交附加文件而不是任何删除的任何想法?
4 回答
对于要删除的每个文件,请执行以下操作:
git update-index --assume-unchanged <file>
这应该会阻止 Git 要求您提交删除。
话虽如此,也许更好的解决方案是使用 SFTP 并设置权限以禁止在上传后删除或修改文件。
使用 Skip-Worktree 位
git-update-index(1)命令提供了一些处理这个问题的方法。基于您希望将 blob 保留在历史记录中同时从工作树中删除它们的假设,您可以使用以下命令:
git add --all
git commit --message="Add new assets to repository."
git update-index update-index --skip-worktree <files ...>
rm <files ...>
请注意,最后一行不是 Git 命令,因为在将文件存储在索引中之后,您正在从shell 的工作树中删除文件。不要git rm
误用,因为它对索引进行操作。
列出您的特殊位和仅索引文件
要查看您使用 skip-worktree 位标记的文件:
git ls-files -v | awk -v IGNORECASE=1 '$1 ~ /s/ {print}'
您还可以使用git-ls-files(1)在索引中查找已从工作树中删除的文件。
(编辑:将有效负载打包为一个独立的脚本)
您正在寻找一个几乎只有状态的本地存储库,该存储库跟踪您曾经创建的所有内容的存在,但只保留最新内容的内容(在将所有内容推送到上游之后)。假设您从不重用路径名,这是仪式:
一次性设置:
创建并推送一个everything
分支,以跟踪您迄今为止获得的每张图像。建立一个(仅限本地)worktree
分支。
git checkout -b everything # this will be the branch you push
git push origin everything # .
git checkout -b worktree # you'll stay on this branch
工作(几乎)好像你不想做任何特别的事情:
需要保留上游的所有内容都在everything
分支上,并且您已经worktree
签出。从工作树中删除您已完成的图像,在那里制作需要推送的新图像,并提交新的工作树状态:
# work work:
rm -r anything/ you\'re/ done with
create new images
git add -A . # good gitignore patterns make life easy
git commit
要完成请求的工作,请运行
merge-push-and-cleanup # the script below
之后所有内容都存储在上游,本地没有多余的东西,您已经准备好进行更多工作。
merge-push-and-cleanup
脚本:
#!/bin/sh
# Git can do "index-only" merges when the content doesn't need to be examined,
# you can casually create sideband indexes, and `git commit-tree` works on any
# tree in the repo.
(
# ^ subshell to keep G_I_F export local
export GIT_INDEX_FILE=.git/sideband-index
# make a merged index that includes everything from both branches, by
# starting from an empty merge base so all files show up as additions.
git read-tree -im $(git mktree </dev/null) worktree everything
# commit to the `everything` branch straight from the constructed index,
# reusing the commit message from `worktree`
git cat-file -p worktree | sed 1,/^$/d \
| git commit-tree -p everything -p worktree $(git write-tree --missing-ok) \
| xargs git update-ref refs/heads/everything
)
git push origin everything
# preserve the branch metadata and, just for safety, your latest images
# by packing it all up:
mkdir -p .git/preserved/pack
rm -f .git/preserved/pack/*
(
git rev-list worktree everything
git rev-parse worktree^{tree} everything^{tree}
git ls-tree -rt worktree | awk '{ print $3 }'
git ls-tree -rt everything | awk '$2 != "blob" { print $3 }'
) \
| git pack-objects .git/preserved/pack/pack
# now for the fun one:
rm -rf .git/objects/* # !!!
# put the preserved stuff back:
mv .git/preserved/pack .git/objects
只需将图像添加到 gitignore。您不需要将它们存储在回购中,对吗?