Re: [git-users] Visually show file history

2015-07-29 Thread Ying Huang
See my answer in context On 7/29/15 8:10 AM, Konstantin Khomoutov wrote: On Wed, 29 Jul 2015 07:48:10 -0700 Ying Huang huangyi...@gmail.com wrote: Hi, great thanks for your attention, Yes, git log --oneline --format %H --follow -- hello.txt is better than using awk. git log

Re: [git-users] Visually show file history

2015-07-29 Thread Konstantin Khomoutov
On Wed, 29 Jul 2015 08:26:23 -0700 Ying Huang huangyi...@gmail.com wrote: [...] I'm afraid I don't get your problem statement. As I understood it, you told that, 1) say, let the history of hello.txt includes 3 commits, and 2) you'd like to see three diff views -- one for each of

Re: [git-users] Visually show file history

2015-07-29 Thread Ying Huang
On 7/29/15 10:26 AM, Konstantin Khomoutov wrote: On Wed, 29 Jul 2015 08:26:23 -0700 Ying Huang huangyi...@gmail.com wrote: [...] I'm afraid I don't get your problem statement. As I understood it, you told that, 1) say, let the history of hello.txt includes 3 commits, and 2) you'd like to see

[git-users] Putting an entire drive under version control?

2015-07-29 Thread 2015q3
I'm putting together a thumb drive that boots into an evil operating system (yes, that one), and has some applications and data on it. It would be nice to have the whole thing under version control. Yes, I know this is unconventional. It seems to me that I might create a folder for this

Re: [git-users] Visually show file history

2015-07-29 Thread Ying Huang
Hi, great thanks for your attention, Yes, git log --oneline --format %H --follow -- hello.txt is better than using awk. git log --oneline --format %H --follow -- hello.txt \ | while read name; do git difftool $name $name^1 done Unfortunately, if you observe

Re: [git-users] Visually show file history

2015-07-29 Thread Konstantin Khomoutov
On Wed, 29 Jul 2015 07:48:10 -0700 Ying Huang huangyi...@gmail.com wrote: Hi, great thanks for your attention, Yes, git log --oneline --format %H --follow -- hello.txt is better than using awk. git log --oneline --format %H --follow -- hello.txt \ | while read name; do