I have a project called myproject in a repository with the link say www.abc.com I have to add a submodule to it and the submodule is present in a different repository say www.xyz.com
The submodule is under libs->android->appirator
I have followed this link http://www.git-scm.com/book/en/v2/Git-Tools-Submodules. So when I execute this below command I am able to get the total content of libs folder in my project.
$ git submodule add myrepository link
But after the commit when I clone the project www.abc.com I am not getting the project with submodule
I know I have to create a symbolic link.I went through a lot of links but failed to do so.
Please suggest me whan can be done here so that when the user clones it he should get the submodule also.
Help is always appreciated, Thanks