I've a repo with some external git repos as submodules. I made some changes in these submodules, but I've no way of pushing them upstream. How do I commit my changes to my repo without needed to push upstream? I'm ok with with having an out-of-sync copy of submodules. One way is to clone external repos as just remove the .git directory to treat them just as directories, but I already have a submodule setup and I'd like to avoid that if possible.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
You can commit the submodule changes to your local repo, but anyone else cloning it won't see those changes unless you push them upstream. That being said, you don't necessarily have to push those changes upstream to the same place you got them. You can clone a copy of the submodule on the same server you keep your main repo and push your changes to that copy instead. The only change you have to make is that you'll have to re-init the submodule as coming from your server, rather than the original repo. |
|||||
|
