[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-26 Thread Uwe Schindler (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15118829#comment-15118829
 ] 

Uwe Schindler commented on LUCENE-6937:
---

Thanks Dawid!

The discussions on the ML are just usual...

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>Assignee: Mark Miller
> Fix For: 5.5
>
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-26 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15118020#comment-15118020
 ] 

Dawid Weiss commented on LUCENE-6937:
-

Yeah, thanks. Although I do feel a bit Oppenhaimerish... don't know whether I 
initiated a good or bad thing.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>Assignee: Mark Miller
> Fix For: 5.5
>
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-26 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15118095#comment-15118095
 ] 

Mark Miller commented on LUCENE-6937:
-

Just give it a littlle time :) we will settle into a flow. 

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>Assignee: Mark Miller
> Fix For: 5.5
>
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-23 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15113806#comment-15113806
 ] 

Dawid Weiss commented on LUCENE-6937:
-

I overlooked one release tag/ commit during migration. Here is the fixup log 
(already pushed to the repo):

{code}
# Locate the release tag's version in SVN

$ svn log -v --stop-on-copy 
https://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_5_3_2

r1726288 | anshum | 2016-01-22 19:57:58 +0100 (Fri, 22 Jan 2016) | 1 line
Changed paths:
   A /lucene/dev/tags/lucene_solr_5_3_2 (from 
/lucene/dev/branches/lucene_solr_5_3:1725196)

Lucene/Solr release 5.3.2


$ git log --all --grep="@1726288"

# nothing, we lost this commit during pruning because it wasn't reachable by 
any ref.
# let's locate the *last* change that occurred on 
/lucene/dev/branches/lucene_solr_5_3
# prior to r1725196:

$ svn info 
https://svn.apache.org/repos/asf/lucene/dev/branches/lucene_solr_5_3@1725196

Path: lucene_solr_5_3
URL: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene_solr_5_3
Repository Root: https://svn.apache.org/repos/asf
Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
Revision: 1725196
Node Kind: directory
Last Changed Author: yonik
Last Changed Rev: 1725012
Last Changed Date: 2016-01-16 19:07:46 +0100 (Sat, 16 Jan 2016)

# So the last change was r1725012, locate it in git:

$ git log --all --grep="@1725012"

commit d57d7b14883a4b27990ee88419ac89dbed8f34bf
Author: Yonik Seeley 
Date:   Sat Jan 16 18:07:46 2016 +

SOLR-8496: multi-select faceting and getDocSet(List) can match 
deleted docs

git-svn-id: 
https://svn.apache.org/repos/asf/lucene/dev/branches/lucene_solr_5_3@1725012 
13f79535-47bb-0310-9956-ffa450edef68

# Tag this commit as the release commit (no further changes occurred on the tag 
path in SVN):

git tag releases/lucene-solr/5.3.2 d57d7b14883a4b27
git push origin releases/lucene-solr/5.3.2
{code}

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>Assignee: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-22 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15113372#comment-15113372
 ] 

ASF subversion and git services commented on LUCENE-6937:
-

Commit 1726344 from [~dawidweiss] in branch 'dev/trunk'
[ https://svn.apache.org/r1726344 ]

LUCENE-6937: moving trunk from SVN to GIT.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>Assignee: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-22 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15113374#comment-15113374
 ] 

ASF subversion and git services commented on LUCENE-6937:
-

Commit 1726345 from [~dawidweiss] in branch 'dev/branches/branch_5x'
[ https://svn.apache.org/r1726345 ]

LUCENE-6937: moving trunk from SVN to GIT.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>Assignee: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-09 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15090791#comment-15090791
 ] 

Mark Miller commented on LUCENE-6937:
-

I filed INFRA-11056 Migrate Lucene project from SVN to Git.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-01 Thread Michael McCandless (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15076258#comment-15076258
 ] 

Michael McCandless commented on LUCENE-6937:


What a delightful visualization [~markrmil...@gmail.com], thanks for posting!

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-01 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15076285#comment-15076285
 ] 

Dawid Weiss commented on LUCENE-6937:
-

This makes perfect sense, Mark. As I mentioned on LUCENE-6933, the git history 
contains two independent "roots" -- one for Solr and one for Lucene, before 
they converge into one. Look at this graph:

https://raw.githubusercontent.com/dweiss/lucene-solr-svn2git-migration/master/docs/dev-lines-overview.png

So the visualization is (I think) showing Lucene up until merger with Solr, 
then catching up on Solr's development, and then continuing. Very nice.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-01 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15076322#comment-15076322
 ] 

Mark Miller commented on LUCENE-6937:
-

It looks like LUCENE-6938 won't take too much effort. Once that is ready, I'll 
create an INFRA issue about the migration.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-01 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15076320#comment-15076320
 ] 

Mark Miller commented on LUCENE-6937:
-

Yeah, but Solr was contributed around 2006, so I guess I don't really 
understand going 2001-2005 and then 2002-2015. And then the code bases were 
merged around 2010. The video for that event looks pretty cool. Anyway, I def 
understand the history is complicated, even clean, given Lucene / Solr, the 
merge, but I guess I would expect the dates to look different. Okay, let's say 
first we play to 2005, up to when Solr is created in SVN, why does it then jump 
back to 2002? Solr should not have any history that old?

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2016-01-01 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15076333#comment-15076333
 ] 

Dawid Weiss commented on LUCENE-6937:
-

Hmm... you're right. You'd have to look at what this visualization actually 
does. There will be out-of-date-order commits in history (the ones I introduced 
when merging), I didn't want to fake a back date on those commits, let it be a 
true date.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-31 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15075978#comment-15075978
 ] 

Mark Miller commented on LUCENE-6937:
-

Here is a visual history of the project using this Git repo: 
https://www.youtube.com/watch?v=BG8TN-GNtqo

bq. gource -s .06 -1280x720 --auto-skip-seconds .1 --multi-sampling 
--stop-at-end --key --highlight-users --hide 
mouse,progress,files,filenames,dirnames --file-idle-time 0 --max-files 0
  --background-colour 00 --font-size 22 --title "Lucene/Solr" 
--output-ppm-stream -  --output-framerate 30 | avconv -y -r 30 -f image2pipe 
-vcodec ppm -i - -b 65536K movie.mp4 && ffmpeg -i movie.mp4 -b:v 3048780 
-vcodec libx264 -crf 24 output.mp4

Really cool. For some reason it runs from 2001 to 2005 and then the date flips 
back to 2002 and goes back up. Not sure why, but otherwise seems to work 
correctly.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-30 Thread Pushkar Raste (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15075165#comment-15075165
 ] 

Pushkar Raste commented on LUCENE-6937:
---

[~thetaphi] - You should be able to change it by going to 'Settings -> 
Branches' and selecting {{trunk}} as default branch from the drop down

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-30 Thread Pushkar Raste (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15075179#comment-15075179
 ] 

Pushkar Raste commented on LUCENE-6937:
---

@[~thetaphi] - Changing default branch is as easy as "Settings -> Branches" and 
select from drop down in 'Default Branch" section

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-30 Thread Uwe Schindler (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15075374#comment-15075374
 ] 

Uwe Schindler commented on LUCENE-6937:
---

The repository is not in our ownership. It was created by Github people as a 
clone/fork of the official SVN clone at the Apache Software Foundation. So we 
cannot change any settings. We have to ask Github people to either remove it or 
fix it. We cannot even close pull requests through the web interface (only via 
"Closes: #") commit messages.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



Re: [jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-30 Thread Mark Miller
It won't be the official repo. That is at Apache. Github remains a mirror.

Infra may be able to make those changes.

- Mark

On Wed, Dec 30, 2015 at 5:18 PM Erick Erickson 
wrote:

> Hmmm, seems preferable that we should own it if it's to be our
> official repo. Is it possible to ask the gitHub people to change
> ownership?
>
> On Wed, Dec 30, 2015 at 12:11 PM, Uwe Schindler (JIRA) 
> wrote:
> >
> > [
> https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15075374#comment-15075374
> ]
> >
> > Uwe Schindler commented on LUCENE-6937:
> > ---
> >
> > The repository is not in our ownership. It was created by Github people
> as a clone/fork of the official SVN clone at the Apache Software
> Foundation. So we cannot change any settings. We have to ask Github people
> to either remove it or fix it. We cannot even close pull requests through
> the web interface (only via "Closes: #") commit messages.
> >
> >> Migrate Lucene project from SVN to Git.
> >> ---
> >>
> >> Key: LUCENE-6937
> >> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> >> Project: Lucene - Core
> >>  Issue Type: Task
> >>Reporter: Mark Miller
> >>
> >> See mailing list discussion:
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E
> >
> >
> >
> > --
> > This message was sent by Atlassian JIRA
> > (v6.3.4#6332)
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
> > For additional commands, e-mail: dev-h...@lucene.apache.org
> >
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
> For additional commands, e-mail: dev-h...@lucene.apache.org
>
> --
- Mark
about.me/markrmiller


Re: [jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-30 Thread Erick Erickson
Hmmm, seems preferable that we should own it if it's to be our
official repo. Is it possible to ask the gitHub people to change
ownership?

On Wed, Dec 30, 2015 at 12:11 PM, Uwe Schindler (JIRA)  wrote:
>
> [ 
> https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15075374#comment-15075374
>  ]
>
> Uwe Schindler commented on LUCENE-6937:
> ---
>
> The repository is not in our ownership. It was created by Github people as a 
> clone/fork of the official SVN clone at the Apache Software Foundation. So we 
> cannot change any settings. We have to ask Github people to either remove it 
> or fix it. We cannot even close pull requests through the web interface (only 
> via "Closes: #") commit messages.
>
>> Migrate Lucene project from SVN to Git.
>> ---
>>
>> Key: LUCENE-6937
>> URL: https://issues.apache.org/jira/browse/LUCENE-6937
>> Project: Lucene - Core
>>  Issue Type: Task
>>Reporter: Mark Miller
>>
>> See mailing list discussion: 
>> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E
>
>
>
> --
> This message was sent by Atlassian JIRA
> (v6.3.4#6332)
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
> For additional commands, e-mail: dev-h...@lucene.apache.org
>

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-30 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15074829#comment-15074829
 ] 

Dawid Weiss commented on LUCENE-6937:
-

The baseline git clone is ready, let me know if you need anything Mark.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-30 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15075041#comment-15075041
 ] 

Mark Miller commented on LUCENE-6937:
-

Thanks Dawid! I'll start looking at what must be done for LUCENE-6938.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064292#comment-15064292
 ] 

Mark Miller commented on LUCENE-6937:
-

Lot's of projects at Apache have already migrated, so other than how we clean 
up our svn-git migration, none of this will be new ground.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064287#comment-15064287
 ] 

Dawid Weiss commented on LUCENE-6937:
-

As for infra, technically this should be easy -- set up git repo, clone 
--mirror the one I uploaded to github... Legally -- I don't know. The infras 
could retrace everything I did to ensure consistency with SVN, but I see little 
point in doing this (takes awful amount of time and some quirky knowledge).

Also, don't know whether we can/ should just remove/ replace the existing git 
clone at:
git://git.apache.org/lucene-solr.git

This will complicate github mirror integration as there are existing forks of 
it already, etc. My opinion is that we should replace it because it's not a 
complete mirror anyway.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064297#comment-15064297
 ] 

Mark Miller commented on LUCENE-6937:
-

bq. The infras could retrace everything I did to ensure consistency with SVN, 
but I see little point in doing this (takes awful amount of time and some 
quirky knowledge).

I don't think they will be very interested in doing those things. Just getting 
our Git repo setup at Apache and our link to GitHub setup. They are really only 
going to be interested in touching the things we cannot most likely.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064326#comment-15064326
 ] 

Dawid Weiss commented on LUCENE-6937:
-

These are obsolete repos. Frankly, I'd just remove them, they're just confusing 
to people, most likely.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Uwe Schindler (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064347#comment-15064347
 ] 

Uwe Schindler commented on LUCENE-6937:
---

The messaage is there: https://github.com/apache/solr/tree/trunk

The problem is that github opens the old 1.1 release branch because there is no 
"master". And "1.1" is the first in alphabetical order.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Uwe Schindler (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064319#comment-15064319
 ] 

Uwe Schindler commented on LUCENE-6937:
---

bq. This will complicate github mirror integration as there are existing forks 
of it already, etc. My opinion is that we should replace it because it's not a 
complete mirror anyway.

+1. This only causes issues for people that have forks or checkouts.

What should we do with https://github.com/apache/solr/tree/trunk and 
https://github.com/apache/lucene/tree/trunk ?

Those are the old pre-lusolr-merge SVN repos. So basically, Dawid does not need 
to clone them anyways, we can leave what exists there. It looks like it is 
complete. Although the trunk branch should be renamed to "master" (or github's 
config changed), because currently it shows the wrong ones if you go to repo's 
homepage.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064338#comment-15064338
 ] 

Dawid Weiss commented on LUCENE-6937:
-

Well, you could just commit a similar message to solr's old repo folder -- if 
it gets synced up it'd show the same message on github. But honestly, I don't 
think it's worth it (I'd just ask github to close the mirror of these two old 
branches).

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Uwe Schindler (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064334#comment-15064334
 ] 

Uwe Schindler commented on LUCENE-6937:
---

bq.  they're just confusing to people, most likely.

especially because in Solr's case, if you go to https://github.com/apache/solr, 
it opens the 1.1 release branch (because it is first one). So people get more 
confused. In case of Lucene it goes to trunk, which already has the "repo 
moved" message. In contrast, Lucene is correct: https://github.com/apache/lucene

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-18 Thread Dawid Weiss (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15064357#comment-15064357
 ] 

Dawid Weiss commented on LUCENE-6937:
-

Oh, ok!

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (LUCENE-6937) Migrate Lucene project from SVN to Git.

2015-12-16 Thread Mark Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/LUCENE-6937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15061043#comment-15061043
 ] 

Mark Miller commented on LUCENE-6937:
-

As mentioned in LUCENE-6933, https://issues.apache.org/jira/browse/INFRA-5266 
is a good root issue to explore the INFRA tickets that a previous svn->git 
migration had to file.

> Migrate Lucene project from SVN to Git.
> ---
>
> Key: LUCENE-6937
> URL: https://issues.apache.org/jira/browse/LUCENE-6937
> Project: Lucene - Core
>  Issue Type: Task
>Reporter: Mark Miller
>
> See mailing list discussion: 
> http://mail-archives.apache.org/mod_mbox/lucene-dev/201512.mbox/%3CCAL8PwkbFVT83ZbCZm0y-x-MDeTH6HYC_xYEjRev9fzzk5YXYmQ%40mail.gmail.com%3E



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org