Discussion:
[Numpy-discussion] missing from contributor list?
Sturla Molden
2016-11-02 22:38:13 UTC
Permalink
Why am I missing from the contributor hist here?

https://github.com/numpy/numpy/blob/master/numpy/_build_utils/src/apple_sgemv_fix.c


Sturla
Robert Kern
2016-11-02 22:46:01 UTC
Permalink
Because Github (or maybe git) doesn't track the history of the file through
all of the renames. It is only reporting the contributors of changes to the
file at its current location. If you go back to the time just prior to the
commit that renamed the file, you do show up in the list:

https://github.com/numpy/numpy/blob/f179ec92d8ddb0dc5f7445255022be5c4765a704/numpy/build_utils/src/apple_sgemv_fix.c
Post by Sturla Molden
Why am I missing from the contributor hist here?
https://github.com/numpy/numpy/blob/master/numpy/_
build_utils/src/apple_sgemv_fix.c
Sturla
_______________________________________________
NumPy-Discussion mailing list
https://mail.scipy.org/mailman/listinfo/numpy-discussion
--
Robert Kern
Evgeni Burovski
2016-11-02 22:50:33 UTC
Permalink
***@duneyrr:~/repos/numpy/numpy/_build_utils$ git blame -M -C -C
apple_accelerate.py
4743f3b4 numpy/_build_utils/apple_accelerate.py (Charles Harris
2015-12-05 19:16:00 -0700 1) from __future__ import division, a
4743f3b4 numpy/_build_utils/apple_accelerate.py (Charles Harris
2015-12-05 19:16:00 -0700 2)
cf307769 numpy/build_utils/apple_accelerate.py (Sturla Molden
2014-10-27 07:45:57 +0100 3) import os
cf307769 numpy/build_utils/apple_accelerate.py (Sturla Molden
2014-10-27 07:45:57 +0100 4) import sys
cf307769 numpy/build_utils/apple_accelerate.py (Sturla Molden
2014-10-27 07:45:57 +0100 5) import re
cf307769 numpy/build_utils/apple_accelerate.py (Sturla Molden
2014-10-27 07:45:57 +0100 6)
cf307769 numpy/build_utils/apple_accelerate.py (Sturla Molden
2014-10-27 07:45:57 +0100 7) __all__ = ['uses_accelerate_framew
cf307769 numpy/build_utils/apple_accelerate.py (Sturla Molden
2014-10-27 07:45:57 +0100 8)
cf307769 numpy/build_utils/apple_accelerate.py (Sturla Molden
2014-10-27 07:45:57 +0100 9) def uses_accelerate_framework(info
<snip>
Post by Robert Kern
Because Github (or maybe git) doesn't track the history of the file through
all of the renames. It is only reporting the contributors of changes to the
file at its current location. If you go back to the time just prior to the
https://github.com/numpy/numpy/blob/f179ec92d8ddb0dc5f7445255022be5c4765a704/numpy/build_utils/src/apple_sgemv_fix.c
Post by Sturla Molden
Why am I missing from the contributor hist here?
https://github.com/numpy/numpy/blob/master/numpy/_build_utils/src/apple_sgemv_fix.c
Sturla
_______________________________________________
NumPy-Discussion mailing list
https://mail.scipy.org/mailman/listinfo/numpy-discussion
--
Robert Kern
_______________________________________________
NumPy-Discussion mailing list
https://mail.scipy.org/mailman/listinfo/numpy-discussion
Julian Taylor
2016-11-02 22:52:16 UTC
Permalink
Post by Sturla Molden
Why am I missing from the contributor hist here?
https://github.com/numpy/numpy/blob/master/numpy/_build_utils/src/apple_sgemv_fix.c
Probably because the file was moved and github does not track this. This
is something you should ask gihub about and not this list.

fwiw. git blame -C still shows it
Charles R Harris
2016-11-02 22:59:58 UTC
Permalink
Post by Sturla Molden
Why am I missing from the contributor hist here?
https://github.com/numpy/numpy/blob/master/numpy/_
build_utils/src/apple_sgemv_fix.c
You still show up in the commit log of if you follow the file
```
git log --follow numpy/_build_utils/apple_accelerate.py
```

So I have to agree with others that the problem is on the github end.

Chuck
m***@telenczuk.pl
2016-11-03 10:10:22 UTC
Permalink
Hi,

I had the same problem when I changed my email address. It seems that github matches user profiles to commits using the email address, so you have to make sure that the email you sign your commits with is registered in your github account.

Cheers,

Bartosz
Post by Charles R Harris
Post by Sturla Molden
Why am I missing from the contributor hist here?
https://github.com/numpy/numpy/blob/master/numpy/_
build_utils/src/apple_sgemv_fix.c
You still show up in the commit log of if you follow the file
```
git log --follow numpy/_build_utils/apple_accelerate.py
```
So I have to agree with others that the problem is on the github end.
Chuck
Julian Taylor
2016-11-03 14:24:24 UTC
Permalink
you can add multiple email addresses to your github settings so commits
are properly attributed to your account.
Post by m***@telenczuk.pl
Hi,
I had the same problem when I changed my email address. It seems that github matches user profiles to commits using the email address, so you have to make sure that the email you sign your commits with is registered in your github account.
Cheers,
Bartosz
Post by Charles R Harris
Post by Sturla Molden
Why am I missing from the contributor hist here?
https://github.com/numpy/numpy/blob/master/numpy/_
build_utils/src/apple_sgemv_fix.c
You still show up in the commit log of if you follow the file
```
git log --follow numpy/_build_utils/apple_accelerate.py
```
So I have to agree with others that the problem is on the github end.
Chuck
_______________________________________________
NumPy-Discussion mailing list
https://mail.scipy.org/mailman/listinfo/numpy-discussion
Loading...