I'm working with GIT and Bitbucket. While working with Git Submodules i couldn't pull request at once all changes made in different submodules to the my main branch "MASTER". is there a way to create one pull request across many submodules.
Asked
Active
Viewed 7,710 times
1 Answers
3
Each time you are addin new commits (and pushing them) from your submodules, you are modifying the gitlink (a special entry in the parent repo index) representing the submodule tree SHA1.
You need to go back to that parent repo, add, commit and push those new gitlinks, before doing your PR from the branch you just pushed.
VonC
- 1,129,465
- 480
- 4,036
- 4,755