Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git cat staged file to stdout

Tags:

git

git-add

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.

like image 839
Jean Paul Galea Avatar asked Mar 03 '11 10:03

Jean Paul Galea


1 Answers

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
like image 146
Mark Longair Avatar answered Sep 24 '22 16:09

Mark Longair