Complete the code to specify the branch named 'main' in a Jenkins pipeline.
git branch: '[1]'
The branch specifier 'main' tells Jenkins to use the main branch for the build.
Complete the code to select the branch named 'feature-xyz' in a Jenkins pipeline.
git branch: '[1]'
Specifying 'feature-xyz' selects that specific feature branch for the build.
Fix the error in the branch specifier to correctly select the 'develop' branch.
git branch: '[1]'
The branch name is case-sensitive. 'develop' is the correct lowercase branch name.
Fill both blanks to specify the branch and the repository URL in a Jenkins pipeline.
git url: '[1]', branch: '[2]'
The URL points to the repository, and the branch specifies which branch to build.
Fill all three blanks to specify the repository URL, branch, and credentials ID in a Jenkins pipeline.
git url: '[1]', branch: '[2]', credentialsId: '[3]'
The URL is the repository location, the branch is the target branch, and credentialsId is used for authentication.