I have created a project with structure as follows:
jQuery
- Timepicker
- Datepicker
- ScrollEvent
I have one project named jQueryUtils which has 3 sub-modules within it and I should be able to checkout each of them seperately and work on it independently and track changes/commits done on each submodule.
I found a link which explains about GIT Submodules feature.
But the only issue is that each submodule should again point to an existing repo.
Is there any way we can checkout and work on each sub-module without actually creating seperate repo's for each sub-module.
i.e. Currently I can create 'n' number of modules in 'n' different repositories and then merge them into one project using GIT submodule
feature,
But what I want is create 1 project in 1 repo with 'n' modules and then work on each of them individually and track all changes on each module.