Is it possible to rename default "Declarative: Checkout SCM" step? Is it possible to rename default "Declarative: Checkout SCM" step? jenkins jenkins

Is it possible to rename default "Declarative: Checkout SCM" step?


Since noone posted a better solution, I just did it this way:

...options {    skipDefaultCheckout(true)}stages {    stage('However I want to name a stage') {        steps {            checkout scm...