Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Steve Ebersole
Not to mention (note to self) that we need to branch off 3.6 first.. On Friday, October 08, 2010 11:16:04 am Steve Ebersole wrote: > Should have said that this is dependent on some preliminary work, mostly on > moving to Java 6 > http://opensource.atlassian.com/projects/hibernate/browse/HHH-5623 >

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Steve Ebersole
Should have said that this is dependent on some preliminary work, mostly on moving to Java 6 http://opensource.atlassian.com/projects/hibernate/browse/HHH-5623 On Friday, October 08, 2010 11:00:34 am Steve Ebersole wrote: > Be kind of stupid to not huh? ;) > > http://opensource.atlassian.com/

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Steve Ebersole
I had them set up a new one over the GitHub repo (see email I just sent to list). I also just updated JIRA to use that Fisheye repo. I had them drop the indexing of the SF git repo at the same time. On Friday, October 08, 2010 11:03:37 am Paul Benedict wrote: > Speaking of that, does JIRA have

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Steve Ebersole
Be kind of stupid to not huh? ;) http://opensource.atlassian.com/projects/hibernate/browse/HHH-5632 On Friday, October 08, 2010 10:54:48 am Strong Liu wrote: > btw, any plan that merge the hibernate4 source to github? > > On Oct 8, 2010, at 9:36 PM, Steve Ebersole wrote: > > Hey Paul > > > > On

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Paul Benedict
Speaking of that, does JIRA have a github plugin? You can't view the source commits anymore in an issue: Repository Hibernate4 on http://fisheye2.atlassian.com/ failed: unknown repository: Hibernate4 -- Paul On Fri, Oct 8, 2010 at 10:54 AM, Strong Liu wrote: > btw, any plan that merge the hiber

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Strong Liu
btw, any plan that merge the hibernate4 source to github? On Oct 8, 2010, at 9:36 PM, Steve Ebersole wrote: > Hey Paul > > On Thursday, October 07, 2010 07:23:31 pm Paul Benedict wrote: >> I missed the behind-the-scenes discussion. Why was SVN booted? > > We generally discuss stuff like this a

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Steve Ebersole
Hey Paul On Thursday, October 07, 2010 07:23:31 pm Paul Benedict wrote: > I missed the behind-the-scenes discussion. Why was SVN booted? We generally discuss stuff like this at our weekly dev meetings on irc. > And can > I still submit SVN diff patches? I personally do not know how to apply an

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Steve Ebersole
Bear in mind too though that the git clone operation is *much* faster than the corresponding svn checkout. Simply having all the modules "there" will not force Maven to do anything. Maven *always* uses the version of dependencies from the repo. So unless you run install on the core module y

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Emmanuel Bernard
On 7 oct. 2010, at 20:51, Steve Ebersole wrote: >> o prefer rebase over merge >> Rebase put changes from the branch you forked below the new commits you >> have done and thus keep the history linear. >> >> got checkout HHH-XXX >> git rebase master >> >> DO NOT rebase a branch that you have sh

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Emmanuel Bernard
Git on purpose does not allow for partial checkout. Sorry. What you can do is do ashallow clone ie to get all the history. This does not solve your problem, simply speed things up --depth Create a shallow clone with a history truncated to the specified number of revisions. A shallow repositor

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-08 Thread Emmanuel Bernard
On 7 oct. 2010, at 23:20, Steve Ebersole wrote: > On Thursday, October 07, 2010 01:51:52 pm Steve Ebersole wrote: >> On Thursday, October 07, 2010 04:30:11 am Emmanuel Bernard wrote: >>> If you want to contribute a fix or new feature, either use the pure Git >>> approach, or use the GitHub fork

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Strong Liu
hello git gurus, here a question: how to perform a partial checkout? in our testsuite hudson job, we only need the testsuite module, and the purpose for this job is testing the artifacts that upstream core job deployed. of course check out the whole project is an option, but this will force the

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Paul Benedict
I missed the behind-the-scenes discussion. Why was SVN booted? And can I still submit SVN diff patches? On Thu, Oct 7, 2010 at 4:20 PM, Steve Ebersole wrote: > On Thursday, October 07, 2010 01:51:52 pm Steve Ebersole wrote: >> On Thursday, October 07, 2010 04:30:11 am Emmanuel Bernard wrote: >> >

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Steve Ebersole
On Thursday, October 07, 2010 01:51:52 pm Steve Ebersole wrote: > On Thursday, October 07, 2010 04:30:11 am Emmanuel Bernard wrote: > > If you want to contribute a fix or new feature, either use the pure Git > > approach, or use the GitHub fork capability (see > > http://help.github.com/forking/ an

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Steve Ebersole
On Thursday, October 07, 2010 04:30:11 am Emmanuel Bernard wrote: > If you want to contribute a fix or new feature, either use the pure Git > approach, or use the GitHub fork capability (see > http://help.github.com/forking/ and http://help.github.com/pull-requests/ > ) The benefit of the GitHub ap

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Chris Bredesen
Z-Shell also has good native (?) command completion for git and ships with both GNU/Linux and OS X... And for users of both platforms (like myself), zsh feels more consistent between Linux and OS X whereas bash does not (for whatever reason). -CB On 10/07/2010 09:32 AM, Scott Marlow wrote: >

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Scott Marlow
Adding to the favorite git tools: Command completion support (git-completion.bash) is pretty good if your a command shell type person. The script is available via Git project source and other places (included in Fedora). If you read the below mentioned progit book (just ordered my copy last week

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Steve Ebersole
The problem is that magnolia is set up with a decidedly SVN-slant. I set up what I think is most reasonable. On Thursday, October 07, 2010 05:11:31 am Hardy Ferentschik wrote: > We cannot forget to update the info on hibernate.org and the wiki. > I was just about to find the pages in need of upd

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Hardy Ferentschik
We cannot forget to update the info on hibernate.org and the wiki. I was just about to find the pages in need of updated, but it seems the wiki is down :( --Hardy On Thu, 07 Oct 2010 11:30:11 +0200, Emmanuel Bernard wrote: > Hibernate Core now uses Git as the version control system. > You c

Re: [hibernate-dev] Hibernate Core is now using Git

2010-10-07 Thread Emmanuel Bernard
So far, only : - emmanuel - steve - max - hardy - adam have read-write access to hibernate-core on GitHub If you used to have access to SVN and actually use it ;), please email me your github acocunt and I will grant you access. You can also ping me on IRC. Emmanuel On 7 oct. 2010, at 11: