I have staged parts of a fil开发者_如何学Ce 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.
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
精彩评论