Re: What does 'git blame --before -- ' supposed to mean?

2017-08-24 Thread Junio C Hamano
Kevin Daudt writes: > Git blame takes options that are fed to git rev-list, to limit the > commits being taken into account for blaming. > > The man page shows "[--since=]", which is one such option, but > before is valid as well. > > git blame -h shows: > > are documented

Re: What does 'git blame --before -- ' supposed to mean?

2017-08-24 Thread Kevin Daudt
On Mon, Aug 21, 2017 at 12:15:59AM +0530, Kaartic Sivaraam wrote: > Hello all, > > I tried to do a 'git blame' on a file and wanted to see the blame > before a particular revision of that file. I initially didn't know that > you could achieve that with, > > $ git blame > > I thought I

What does 'git blame --before -- ' supposed to mean?

2017-08-20 Thread Kaartic Sivaraam
Hello all, I tried to do a 'git blame' on a file and wanted to see the blame before a particular revision of that file. I initially didn't know that you could achieve that with, $ git blame I thought I need to pass the revision as a parameter so I tried (before looking into the