Simon Peyton Jones <[email protected]> writes: > 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 [email protected]:nofib
Then you can push with,
git push upstream
Cheers,
- Ben
signature.asc
Description: PGP signature
_______________________________________________ ghc-devs mailing list [email protected] http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs
