git-plugin
git-plugin copied to clipboard
Git repository access for Jenkins jobs
I have a pipeline job that builds the dev branch from a single repository hosted on our GitHub Enterprise instance. The repository is configured to use the Manage Jenkins (GitHub...
git fetch has three options to fetch tags: "git fetch" fetches a branch with tags reachable, the ideal default "git fetch --no-tags" fetches a branch without tags "git fetch --tags"...
Branch specifier set to refs/tags/* Max age used to only build recent tags. If no tags within max age range, there is nothing to build, no jobs needed. However, a...
Under certain conditions, the Git SCM polling will return false positives. It gets into a state where it is consistently comparing hashes from two different branches, which will always trigger...
When creating and pushing a tag with the Git Publisher, it gets pushed to the remote repository as a branch. The console output shows: ``` Pushing tag 4.6.44.0.5 to repo...
For some reason some builds (maven job) doesn't populate `${GIT_BRANCH}` I haven't found any pattern to this - my only suspicion would be "build strategy" that sometimes selects non-master branch...
Jenkins version: 2.163 Github plugin version: 1.29.3 Git plugin version: 3.9.3 Git client plugin version: 2.7.6 Job Type: Multibranch Job We're currently using the Github plugin so that commits to...
[JENKINS-55929] exception adding build strategy (choosing what to build) to global pipeline library
Jenkins ver. 2.161; git-plugin from master + unrelated changes. Visit /configure Scroll to Global Pipeline Libraries Click Add Select Retrieval method: Legacy SCM Find Additional Behaviours Click Add Click Strategy...
We have a library loaded dynamically in Pipeline script with library "mylib@8c8a4a95f3187b82112cc2eb8539ba470c1eebff" the sha1 in question is tagged on the remote, but not contained in any branch Jenkins fails to...
If a submodule itself has submodules, and the URL of those submodules changes, then the second submodule's URL will not be updated. This can cause checkout to fail, because the...