Re: How to determine the order of commit

2019-03-05 Thread Junio C Hamano
Christian Couder writes: > Hi, > > On Tue, Mar 5, 2019 at 10:00 AM wuzhouhui > wrote: >> >> Suppose I have "git format-patch" two commit from a repository like >> following: >> >> git format-patch -1 cf1c9ccba730 >> git format-patch -1 d1a2930d8a99 >> >> Now, how to determine the commit ord

Re: How to determine the order of commit

2019-03-05 Thread wuzhouhui
> On Mar 5, 2019, at 8:39 PM, Christian Couder > wrote: > > Hi, > > On Tue, Mar 5, 2019 at 10:00 AM wuzhouhui > wrote: >> >> Suppose I have "git format-patch" two commit from a repository like >> following: >> >> git format-patch -1 cf1c9ccba730 >> git format-patch -1 d1a2930d8a99 >> >

Re: How to determine the order of commit

2019-03-05 Thread Christian Couder
Hi, On Tue, Mar 5, 2019 at 10:00 AM wuzhouhui wrote: > > Suppose I have "git format-patch" two commit from a repository like > following: > > git format-patch -1 cf1c9ccba730 > git format-patch -1 d1a2930d8a99 > > Now, how to determine the commit order of these two patch in repository? Do yo

How to determine the order of commit

2019-03-05 Thread wuzhouhui
Hi, Suppose I have "git format-patch" two commit from a repository like following: git format-patch -1 cf1c9ccba730 git format-patch -1 d1a2930d8a99 Now, how to determine the commit order of these two patch in repository?