``` if ( !gradle.includedBuilds.isEmpty() ) { ...
# gradle
x
Copy code
if ( !gradle.includedBuilds.isEmpty() ) {
    task("build", {
        dependsOn(gradle.includedBuild("is").task(":build"))
        dependsOn(gradle.includedBuild("sec").task(":build"))
    })
}
else {
    // gitClone
}
how would I call the task
gitClone
in the else? like actually run the task not configure it