[Numpy-discussion] Pushing changes to numpy git repo problem
Fernando Perez
fperez.net@gmail....
Thu Dec 2 15:07:14 CST 2010
On Thu, Dec 2, 2010 at 12:52 PM, Pearu Peterson
<pearu.peterson@gmail.com> wrote:
>
> What I am doing wrong?
>
> Here's some additional info:
> $ git remote -v show
> origin git@github.com:pearu/numpy.git (fetch)
> origin git@github.com:pearu/numpy.git (push)
> upstream git://github.com/numpy/numpy.git (fetch)
> upstream git://github.com/numpy/numpy.git (push)
The git:// protocol is read-only, for write access you need ssh
access. Just edit your /path-to-repo/.git/config file and change the
git://github.com/numpy/numpy.git
lines for
git@github.com:numpy/numpy.git
in the upstream description. That should be sufficient.
Regards,
f
More information about the NumPy-Discussion
mailing list