On Wed, 28 Mar 2012 06:02:35 -0700 (PDT) dspfun <[email protected]> wrote:
> I have made a clone of a git repo. Each file has a number of > modifications to it compared to when the files were put into git. > > I would like to "see" all the original/first versions of each file, > how do I do this in git? $ git show <rev>:<filename> Would dump the contents of <filename> as recorded in revision <rev>. So you have to decide what revision you cound as "original" and then run the above command for each file of interest. See the "gitrevisions" manual page for more info about the syntax. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.
