git-plugin icon indicating copy to clipboard operation
git-plugin copied to clipboard

[JENKINS-72428] The tag specified when downloading the code is inconsistent with the actual downloaded code branch.

Open jenkins-infra-bot opened this issue 2 years ago • 2 comments

1 def scmVars = checkout([$class: "GitSCM", branches: [[name: "${BRANCH}"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: "CleanBeforeCheckout", deleteUntrackedNestedRepositories: true]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${CERT_ID}", url: "$CODE"]]])
2 def scmVars = checkout scmGit(branches: [[name: "${BRANCH}"]], extensions: [[$class: "CleanBeforeCheckout", deleteUntrackedNestedRepositories: true]], userRemoteConfigs: [[credentialsId: "${CERT_ID}", url: "$CODE"]])

Neither method can correctly identify the tag.

 

 

The dramatic thing is that after I pulled the 5.2.0 hpi from the official version and deployed it again, it worked, but currently I am still using the 5.2.0 version.

Another interesting thing is that the commit id I pulled cannot be found in the latest commits of all branches and tags.

 

Another point is that I first created a branch and tag with the same name, and then deleted the branch.


Originally reported by bobo200128, imported from: The tag specified when downloading the code is inconsistent with the actual downloaded code branch.
  • status: Open
  • priority: Critical
  • component(s): git-plugin
  • resolution: Unresolved
  • votes: 0
  • watchers: 2
  • imported: 2025-12-02
Raw content of original issue

1 def scmVars = checkout([$class: "GitSCM", branches: [[name: "${BRANCH}"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: "CleanBeforeCheckout", deleteUntrackedNestedRepositories: true]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${CERT_ID}", url: "$CODE"]]]) 2 def scmVars = checkout scmGit(branches: [[name: "${BRANCH}"]], extensions: [[$class: "CleanBeforeCheckout", deleteUntrackedNestedRepositories: true]], userRemoteConfigs: [[credentialsId: "${CERT_ID}", url: "$CODE"]])

Neither method can correctly identify the tag.

 

 

The dramatic thing is that after I pulled the 5.2.0 hpi from the official version and deployed it again, it worked, but currently I am still using the 5.2.0 version.

Another interesting thing is that the commit id I pulled cannot be found in the latest commits of all branches and tags.

 

Another point is that I first created a branch and tag with the same name, and then deleted the branch.

environment
jenkins Jenkins 2.401.3<br/>
git plugin 5.2.0
7 attachments

jenkins-infra-bot avatar Dec 05 '23 11:12 jenkins-infra-bot