更新²:使用 Git 2.23(2019 年 8 月),有一个新命令
git restore
可以执行此操作,请参阅接受的答案。更新:从 Git 1.8.3 开始,这将更直观地工作,请参阅我自己的答案。
想象以下用例:我想删除 Git 工作树的特定子目录中的所有更改,而保留所有其他子目录不变。
我可以
git checkout .
,但是git checkout 。添加稀疏结帐排除的目录有
git reset --hard
,但它不会让我为子目录这样做:> git reset --hard . fatal: Cannot do hard reset with paths.
我可以使用 反向修补当前状态
git diff subdir | patch -p1 -R
,但这是一种相当奇怪的方法。
此操作的正确 Git 命令是什么?
下面的脚本说明了这个问题。在注释下方插入正确的命令How to make files
——当前命令将恢复a/c/ac
应该被稀疏检出排除的文件。请注意,我不想显式恢复a/a
and a/b
,我只“知道”a
并想恢复下面的所有内容。编辑:而且我也不“知道” b
,或者哪些其他目录与a
.
#!/bin/sh
rm -rf repo; git init repo; cd repo
for f in a b; do
for g in a b c; do
mkdir -p $f/$g
touch $f/$g/$f$g
git add $f/$g
git commit -m "added $f/$g"
done
done
git config core.sparsecheckout true
echo a/a > .git/info/sparse-checkout
echo a/b >> .git/info/sparse-checkout
echo b/a >> .git/info/sparse-checkout
git read-tree -m -u HEAD
echo "After read-tree:"
find * -type f
rm a/a/aa
rm a/b/ab
echo >> b/a/ba
echo "After modifying:"
find * -type f
git status
# How to make files a/* reappear without changing b and without recreating a/c?
git checkout -- a
echo "After checkout:"
git status
find * -type f