Argh!!!

My ~/.gitconfig has:

[user]
  email = mikemcc...@apache.org
  name = Mike McCandless

Which I think the "git config --global user.name ..." did ...

I'll try to figure why my commits are the wrong username.

Mike McCandless

http://blog.mikemccandless.com


On Sun, Jan 24, 2016 at 4:52 PM, Uwe Schindler <u...@thetaphi.de> wrote:
> Hi,
>
> you have still the wrong mail address for the GIT commit itsself:
>> Author: Michael McCandless <m...@mikemccandless.com>
>> Authored: Sun Jan 24 16:48:51 2016 -0500
>
> The person who pushed is different:
>> Committer: Mike McCandless <mikemcc...@apache.org>
>> Committed: Sun Jan 24 16:48:51 2016 -0500
>
> Uwe
>
> -----
> Uwe Schindler
> H.-H.-Meier-Allee 63, D-28213 Bremen
> http://www.thetaphi.de
> eMail: u...@thetaphi.de
>
>
>> -----Original Message-----
>> From: mikemcc...@apache.org [mailto:mikemcc...@apache.org]
>> Sent: Sunday, January 24, 2016 10:49 PM
>> To: comm...@lucene.apache.org
>> Subject: lucene-solr git commit: revert this est change until we can fix geo
>> API border cases (LUCENE-6956)
>>
>> Repository: lucene-solr
>> Updated Branches:
>>   refs/heads/master 9d35aafc5 -> b62c6715d
>>
>>
>> revert this est change until we can fix geo API border cases (LUCENE-6956)
>>
>>
>> Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
>> Commit: http://git-wip-us.apache.org/repos/asf/lucene-
>> solr/commit/b62c6715
>> Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/b62c6715
>> Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/b62c6715
>>
>> Branch: refs/heads/master
>> Commit: b62c6715df12616785732cc1011e11fe4faa16ca
>> Parents: 9d35aaf
>> Author: Michael McCandless <m...@mikemccandless.com>
>> Authored: Sun Jan 24 16:48:51 2016 -0500
>> Committer: Mike McCandless <mikemcc...@apache.org>
>> Committed: Sun Jan 24 16:48:51 2016 -0500
>>
>> ----------------------------------------------------------------------
>>  .../src/test/org/apache/lucene/util/BaseGeoPointTestCase.java  | 6 ++++--
>>  1 file changed, 4 insertions(+), 2 deletions(-)
>> ----------------------------------------------------------------------
>>
>>
>> http://git-wip-us.apache.org/repos/asf/lucene-
>> solr/blob/b62c6715/lucene/sandbox/src/test/org/apache/lucene/util/BaseG
>> eoPointTestCase.java
>> ----------------------------------------------------------------------
>> diff --git
>> a/lucene/sandbox/src/test/org/apache/lucene/util/BaseGeoPointTestCase.j
>> ava
>> b/lucene/sandbox/src/test/org/apache/lucene/util/BaseGeoPointTestCase.j
>> ava
>> index f84d696..4236e88 100644
>> ---
>> a/lucene/sandbox/src/test/org/apache/lucene/util/BaseGeoPointTestCase.j
>> ava
>> +++
>> b/lucene/sandbox/src/test/org/apache/lucene/util/BaseGeoPointTestCase.j
>> ava
>> @@ -434,7 +434,8 @@ public abstract class BaseGeoPointTestCase extends
>> LuceneTestCase {
>>      } else {
>>        result = -90 + 180.0 * random().nextDouble();
>>      }
>> -    return result;
>> +    // TODO: we should not do this here!  it weakens the test, and users 
>> don't
>> pre-quantize the lat/lons they send us:
>> +    return unscaleLat(scaleLat(result));
>>    }
>>
>>    public double randomLon(boolean small) {
>> @@ -444,7 +445,8 @@ public abstract class BaseGeoPointTestCase extends
>> LuceneTestCase {
>>      } else {
>>        result = -180 + 360.0 * random().nextDouble();
>>      }
>> -    return result;
>> +    // TODO: we should not do this here!  it weakens the test, and users 
>> don't
>> pre-quantize the lat/lons they send us:
>> +    return unscaleLon(scaleLon(result));
>>    }
>>
>>    protected GeoRect randomRect(boolean small, boolean canCrossDateLine)
>> {
>
>
> ---------------------------------------------------------------------
> 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

Reply via email to