I am following an example from our IT department, and I would like to understand what this command is doing exactly:
git fetch origin +refs/changes/*:refs/remotes/origin/changes/*
To give some frame of reference, this is part of a continuous integration (CI) tool, and this is part of the step to checkout the code to test. The CI build is triggered by pushing to Gerrit with:
git push origin HEAD:refs/for/master
I secondary question, is if I wanted to push the change into a development branch could I use:
git push origin HEAD:refs/for/development