I'm trying to pull a particular gerrit commit/patch to a branch. I'm not too familiar with gerrit but it seems like for usual case there are things called "patch" which are like a group of commits lumped together. In most cases I see some steps something along the lines of
Clone $git clone ssh:me@gerrit.server.com/potato
Checkout $git checkout fried_branch
Fetch $git fetch ssh:me@gerrit.server.com/potato refs/changes/01/23456/7
Cherry-pick $git cherry-pick FETCH_HEAD
Pull $git pull ssh:me@gerrit.server.com/potato refs/change/01/23456/7
where the refs/changes is used to find the commit/patches. Instead I am given a http link to gerrit commit/patch along the line of
http://gerrit.server.com:8080/#/c/12345/
I assume I need to change the Fetch and pull step of the clone, checkout, fetch, cherry-pick, pull but I'm not sure how to do this this with the http link instead of refs. How do I change the step to work with http?