
14 Dec
2014
14 Dec
'14
5:30 a.m.
On 2014-12-14 at 11:25:35 +0100, Erik de Castro Lopo wrote:
What does the following command output in your case?
$ git remote show -n origin | grep URL Fetch URL: git://git.haskell.org/ghc.git Push URL: ssh://git@git.haskell.org/ghc.git
Fixed it with some help from ezyang who suggested:
git remote set-url origin --push ssh://git@git.haskell.org/ghc.git
That works too, but the more general approach (so you don't have to repeat the step above for other ghc.git repos and/or each submodule separately) is described below: https://ghc.haskell.org/trac/ghc/wiki/WorkingConventions/Git#Pushaccess Cheers, HVR