29 Apr
2017
29 Apr
'17
2:46 a.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