Hello! I've tried to search myself, but looks like my google-fu is weak.
I want to know how what is proper way to specify certain git revision to be built ? I've found how to specify branch via (parameterized option), but not revision. Trying git-parameter plugin, but it looks to be too smart - it is getting all commits and showing them to select from (and for now isn't listing the latest commits i have, but this is another question i guess). The only way for now I've found - is 1) add string param with name like MYGITREV, 2) in build phase, specify script like "if ! [ -z "$MYGITREV" ];then git checkout $MYGITREV;fi" . I can't believe I'm the only one in the world who wants to be able specify revision, like buildbot's "Force build" option.