This is what I do use and it work for me checkout([$class: 'GitSCM' , branches: [[name: 'master']] , browser: [$class: 'BitbucketWeb', repoUrl: 'https://bitbucket.org/mynamepath.git'] , doGenerateSubmoduleConfigurations: false , extensions: [[$class: 'CloneOption', noTags: false], [$class: 'LocalBranch', localBranch: "**"], [$class: 'SubmoduleOption', disableSubmodules: false, parentCredentials: true, recursiveSubmodules: true, reference: '', trackingSubmodules: false], [$class: 'CleanCheckout']] , submoduleCfg: [] , userRemoteConfigs: [[credentialsId: 'MyCredsId', url: 'https://bitbucket.org/mynamepath.git']] ]);
the only difference my eyes can spot is [$class: 'CleanCheckout']] I also use the https and not ssh, maybe something is wrong into ssh From: jenkinsci-users@googlegroups.com <jenkinsci-users@googlegroups.com> On Behalf Of Arturo Arenas Sent: June 11, 2020 3:43 PM To: Jenkins Users <jenkinsci-users@googlegroups.com> Subject: error trying to clone submodule hello, I'm trying to clone a submodule but it's fail. I'm using pipeline script checkout([$class: 'GitSCM', branches: [[name: 'master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CleanBeforeCheckout'], [$class: 'SubmoduleOption', disableSubmodules: false, parentCredentials: true, recursiveSubmodules: true, reference: '', trackingSubmodules: false]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'ssh_key_id', url: 'ssh://g...@url.git']]]) And i get the next error: hudson.plugins.git.GitException: Command "git submodule update --init --recursive mylib" returned status code 1: stdout: stderr: Cloning into '/var/jenkins_home/workspace/myproject/mylib'... /var/jenkins_home/workspace/myproject/.git/modules/mylib: Permission denied fatal: clone of 'ssh://git@url/mylib.git' into submodule path '/var/jenkins_home/workspace/myproject/mylib' failed Failed to clone 'mylib'. Retry scheduled Cloning into '/var/jenkins_home/workspace/myproject/mylib'... /var/jenkins_home/workspace/myproject/.git/modules/mylib: Permission denied fatal: clone of 'ssh://git@url/mylib.git' into submodule path '/var/jenkins_home/workspace/myproject/mylib' failed Failed to clone 'mylib' a second time, aborting Also, i tried to test in my computer with " git clone ssh://url --recursive" and work fine the submodule. what could be happening? i appreciate any help! thanks! best regards! -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com<mailto:jenkinsci-users+unsubscr...@googlegroups.com>. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/ec25bcb7-1d15-4345-840e-dc61129d8c0do%40googlegroups.com<https://groups.google.com/d/msgid/jenkinsci-users/ec25bcb7-1d15-4345-840e-dc61129d8c0do%40googlegroups.com?utm_medium=email&utm_source=footer>. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/YQBPR0101MB1074B4A2808CE20CFE02632FCD800%40YQBPR0101MB1074.CANPRD01.PROD.OUTLOOK.COM.