[git-users] How to show commit file type attached to a hash code

2013-07-08 Thread Akira Tsuchiya
I want to show commit related information by the command below.
By this, committed files are shown, but names only, off course.
But in addition to this, I want to show commit file types (New, Edited, and 
Deleted).
What argument should I use in the command?

git --no-pager show hash code --format=%h%n%an%n%ai%n%s --name-only

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [git-users] How to show commit file type attached to a hash code

2013-07-08 Thread Konstantin Khomoutov
On Mon, 8 Jul 2013 02:43:28 -0700 (PDT)
Akira Tsuchiya akira...@gmail.com wrote:

 I want to show commit related information by the command below.
 By this, committed files are shown, but names only, off course.
 But in addition to this, I want to show commit file types (New,
 Edited, and Deleted).
 What argument should I use in the command?
 
 git --no-pager show hash code --format=%h%n%an%n%ai%n%s --name-only

Use --name-status instead of --name-only ?

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.