
28 Apr
2017
28 Apr
'17
12:46 p.m.
Simon Peyton Jones
git remote -v origin git://git.haskell.org/nofib.git (fetch) origin git://git.haskell.org/nofib.git (push) simonpj@cam-05-unx:~/code/HEAD-4/nofib$
Indeed that is the issue. git:// URLs are read-only. You'll need to add a new remote, git remote add upstream git@git.haskell.org:nofib Then you can push with, git push upstream Cheers, - Ben