Jenkins
Login to Jenkins -> Click on New Item -> choose Pipeline -> Click Ok
On the configure page, select -> This project is parameterized
Enter Name and Choices

node {
if ("${GitRepos}" == "automation")
{
git "https://github.com/yashwanthsn2020/automation.git"
}
if ("${GitRepos}" == "yashwanthsn")
{
git "https://github.com/yashwanthsn2020/yashwanthsn.git"
}
}
Click on saveClick on Build with Parameters
Select automation and Click on Build, it should clone the automation.git



