we are looking to migrate from cvs to svn/git. But, before picking up one from svn/git I just a question in my mind i.e,
for example: developers have 10 requirements. Out of 10 requirements,developers worked on 6 requirements and requested for a build. So we r building all the 10 requirements. But, I am just looking to build only the 6 requirements by excluding remaining 4 requirements.
I came to know that,it is possible with git. Is there any alternative
is it possible? if so,how?
You can easily dedicate a branch in git which is monitored by a build scheduler (like the Jenkins Git Plugin).
(You even can auto-create a Jenkins job for any new feature branch)
You can for example git cherry-pick
any commit you want to apply it on that branch and see if the build pass.