2
votes
3answers
23 views

Forked GIT submodule, and changed source URL. But clone still pulls old source URL?

I have a submodule in my git project, which I have made some changes to, and uploaded to my own git server to fork it. I've changed the source URL in the master git repository to the new submodule's ...
1
vote
1answer
58 views

Can I mark submodule to use different then master branch by default

I have fork of a repo as submodule and I have separated branch (that is pull request BTW) and I want my repo to use that feature branch as default for submodule so people that clone my repo will use ...
5
votes
1answer
482 views

How do I get `git clone --recursive` to recreate submodules' remotes and branches?

I have a project with a handful of submodules. Many of them are cloned from a GitHub fork to which I've added a branch for my custom mods. A typical setup is like thus: In local folder: ...
14
votes
3answers
3k views

Retrospectively add --recursive to a git repo

If you git clone with --recursive, you can get all the git submodules too. If I've forgotten to add this magical flag when cloning, as can happen, how do I now go and get any submodules? ...