Re: [hibernate-dev] Copyright headers

2011-02-14 Thread Hardy Ferentschik
On Mon, 14 Feb 2011 17:11:32 +0100, Emmanuel Bernard wrote: >>> It is not OK to blindly replace a copyright header with another one. >>> One must at least make sure that: >>> - the original copyright date is not erased >> >> Have the policies changed? The least time we had this discussion on

Re: [hibernate-dev] Copyright headers

2011-02-14 Thread Emmanuel Bernard
On 14 févr. 2011, at 16:32, Hardy Ferentschik wrote: > On Mon, 14 Feb 2011 15:13:10 +0100, Emmanuel Bernard > wrote: > >> It is not OK to blindly replace a copyright header with another one. >> One must at least make sure that: >> - the original copyright date is not erased > > Have the polic

Re: [hibernate-dev] Copyright headers

2011-02-14 Thread Hardy Ferentschik
On Mon, 14 Feb 2011 15:13:10 +0100, Emmanuel Bernard wrote: > It is not OK to blindly replace a copyright header with another one. > One must at least make sure that: > - the original copyright date is not erased Have the policies changed? The least time we had this discussion on hibernate-

[hibernate-dev] Copyright headers

2011-02-14 Thread Emmanuel Bernard
Guys, It is not OK to blindly replace a copyright header with another one. One must at least make sure that: - the original copyright date is not erased - copyright holders included in the header are not removed For the date, if a file was initially created in 2007 and updated this year (or any

Re: [hibernate-dev] Applying patches between Core 3.6 and 4

2011-02-14 Thread Galder Zamarreño
Great to know!!! On Feb 14, 2011, at 2:28 PM, Emmanuel Bernard wrote: > Here is the method I've just used. > I work on say 3.6 and apply n commits, ideally I do apply my changes so that > each commit does not cross several modules (ie core and entitymanager) > > For each commit: > cd targeted-m

[hibernate-dev] Applying patches between Core 3.6 and 4

2011-02-14 Thread Emmanuel Bernard
Here is the method I've just used. I work on say 3.6 and apply n commits, ideally I do apply my changes so that each commit does not cross several modules (ie core and entitymanager) For each commit: cd targeted-module git diff --no-prefix previous-commit-sha1 actual-commit-sha1 | patch -p1 The