https://bugzilla.wikimedia.org/show_bug.cgi?id=62844

Marcin Cieślak <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|---                         |INVALID

--- Comment #3 from Marcin Cieślak <[email protected]> ---
Can you check your

git remote -v

If it only lists HTTP remotes
("https://gerrit.wikimedia.org/r/p/mediawiki/core.git";), than the gerrit repo
got checked out using HTTP and not SSH as it should be.

One way to fix this is to have a new checkout as described in

https://www.mediawiki.org/wiki/Gerrit/Tutorial#How_to_submit_a_patch

and have

git clone ssh://[email protected]:29418/mediawiki/core.git

done again

or fix it using this (assuming your HTTP remote is called "origin"):

git remote add gerrit
ssh://[email protected]:29418/mediawiki/core.git
git remote update
(it it fails at this point, check your SSH key setup, including your SSH agent)

and then

git remote rm origin

now

git-review -s

should "just work"

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to