Git cat 将文件暂存到标准输出

发布于 2024-10-20 09:07:23 字数 154 浏览 3 评论 0原文

我已经在 git 中暂存了文件的一部分,所以

git add --patch ./file

我想将暂存文件的内容输出到 stdout。

请注意,暂存文件和工作目录中的文件是不同的,因为我只暂存了文件的部分内容。

I have staged parts of a file in git like so

git add --patch ./file

I would like to output the contents of the staged file to stdout.

Note that the staged file and the file in the working directory are different since I only staged parts of the file.

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

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

发布评论

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

评论(1

凤舞天涯 2024-10-27 09:07:23

如果您只想输出暂存版本中的完整文件,可以使用语法 grawity 建议 回答最近的问题:

git show :file

...或者如果您想查看该文件的 HEAD 和索引之间的更改(通常您刚刚进行的更改)您可以使用:

git diff --cached -- file

If you want to just output the complete file in its staged version, you can use the syntax suggested by grawity in answer to a recent question:

git show :file

... or if you want to see the changes between HEAD and the index for that file (typically the changes you've just staged) you can use:

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