Jenkins Pipeline Git Push
问题 Is there as way to have a stage like so in a Jenkinsfile: stage('Create Branch & Push Branch') { steps { script { sh "git checkout -b release/${NEW_TAG}" sh "git push --set-upstream } } } Currently this leads to: git push --set-upstream origin release/v1.0.3 fatal: could not read Username for 'https://github.com': No such device or address script returned exit code 128 The repository was originally cloned earlier in the pipeline using: checkout poll: false, scm: [$class: 'GitSCM', branches: [