I have a git project P. Within my project P is a submodule Q that was cloned off a 3rd party library's master branch.
P
|
- src
- Vendor
|
- Q
I do not have permission to make push any changes to the 3rd party library's remote repo.
I made some fixes in Q and I now want those to be pushed into the master branch of my project P so my team members can use them too.
Currently I am developing on my 'dev' branch.
I tried the following steps from within P:
cd Vendor/Qgit branch my-fixesgit checkout my-fixes- Make fixes
git addgit commit -m 'My fixes to 3rd Party Library Q'cd ../..git add Vendor/Qgit commit -m 'Changes/fixes made to submodule Q'git push
However, this does not seem to solve my problem. Can someone help me out?