Skimming through the SubModule tutorial, I created a submodule out of the boto project. Then, I discovered that I actually need only a subset of this project - specifically, the boto folder.
I would like to change my submodule to point to this folder. When I look in .gitmodules, I see
[submodule "backup/src/boto"]
path = backup/src/boto
url = https://github.com/boto/boto.git
What URL should I use instead of https://github.com/boto/boto.git? After I change the URL, should I delete the boto folder locally and re-pull?
git subtree
– Autocrat