如何将工作目录中文件的内容与该文件先前暂存版本的内容交换?

发布于 2024-11-07 20:18:31 字数 31 浏览 0 评论 0原文

是否可以将某个文件的索引状态与其工作树内容交换?

Is it possible to exchange the index state of a certain file with its working tree content?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦巷 2024-11-14 20:18:31

您可以使用 git showobject-name 将内容从索引获取到任何位置,其中 object-name 是 SHA1 或 : filename(这意味着索引中的版本)或revision:filename(这意味着给定修订版中的版本)。因此,要么:

git show :filename > filename.tmp
git add filename
mv filename.tmp filename

要么

OBJECT=$(git rev-parse :filename)
git add filename
git show $OBJECT > filename

前者在修改索引之前将数据保存到磁盘,而后者只是向索引询问它所拥有的对象名称,更改它然后从对象存储中获取对象。那时,没有任何东西再引用该对象,但直到运行 git gc 为止它不会被删除。

You can get content from index to anywhere you wish using git showobject-name, where object-name is the SHA1 or :filename (that means the version from index) or revision:filename (that means the version from given revision). So either:

git show :filename > filename.tmp
git add filename
mv filename.tmp filename

or

OBJECT=$(git rev-parse :filename)
git add filename
git show $OBJECT > filename

The former saves the data to disk before modifying the index while the later simply asks the index for object name it had, changes it and than gets the object from object store. At that time, nothing refers to the object any more, but it will not be removed until you run git gc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文