I have very large repository in Git and I have created a job in Jenkins that checks out just one sub-folder from the project following this steps Jenkins and Git sparse checkouts. The problem is that when i or some of my colleagues Wipe Out Current Workspace from Jenkins, info/sparse-checkout gets deleted too.
How can i fix this issue without having to create info/sparse-checkout every time for the same job?
I think it is currently not possible with the git plugin alone (maybe you extend it).
I see these two possible solutions:
You use a plugin (EnvInject+Plugin or pre-scm-buildstep) to execute a shell-script before the SCM checkout. The script have to look like apenwarrs answer.
You have a task in Ant/Maven/Grunt/Whatever, which setup the sparse checkout (what I currently do). Setup your Job as usally and execute the new task before all others.