Edit task

edit

Hi! You can edit the task description yourself with the link on the top right sidebar. —Aron Man.🍂 edits🌾 17:01, 22 February 2020 (UTC)Reply

If you'd like to commit yourself, here's a quick start guide: Gerrit/Tutorial/tl;dr
If not, I'm willing to do it for you. —Aron Man.🍂 edits🌾 17:17, 22 February 2020 (UTC)Reply
Oh great, thanks. I have some free time this weekend and I'll take a look. Magog the Ogre (talk) 17:31, 22 February 2020 (UTC)Reply
I followed the instructions but I continue to get access denied. I have my id_rsa/id_rsa.pub all configured and my accounts connected but I continue to get access denied.
$ git clone ssh://magog_the_ogre@gerrit.wikimedia.org:29418/mediawiki/extensions/MultimediaViewer.git
Cloning into 'MultimediaViewer'...
magog_the_ogre@gerrit.wikimedia.org: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists. Magog the Ogre (talk) 16:29, 23 February 2020 (UTC)Reply
I think that command did not work for me either. Manual needs an update. I use (name replaced):
git clone magog_the_ogre@wikimedia:mediawiki/extensions/MultimediaViewer
Also have this in ~/.ssh/config:
Host wikimedia
  HostName gerrit.wikimedia.org
  Port 29418
  User magog_the_ogre
  IdentityFile ~/.ssh/id_rsa
  PreferredAuthentications publickey
  PasswordAuthentication no
  IdentitiesOnly yes
Aron Man.🍂 edits🌾 18:42, 23 February 2020 (UTC)Reply
Another tip while we are at it: set up git shortcuts to type less. Add to ~/.ssh/.gitconfig
[alias]
	s = status
	c = commit
	r = review
	cl = clone
	co = checkout
	br = branch
then you do start working with
# setup
git r -s
# list modified
git s
# commit (create patch)
git c
# send patch
git r -R
For steps 2-3 I recommend using a proper GUI instead, it will help a lot with learning the intricacies and terminology:
I'm sorry, I tried this with your fixes. I am still getting permission denied.
Please make the change on my behalf if you can. Magog the Ogre (talk) 04:35, 29 February 2020 (UTC)Reply
Seems to me there was a fix merged in the last days:
https://phabricator.wikimedia.org/T243160#5922139
https://gerrit.wikimedia.org/r/#/c/574602/
I haven't tested it, tho. —Aron Man.🍂 edits🌾 18:40, 29 February 2020 (UTC)Reply