I have project Foo
with it's own repository. Today i add existing project in my solution: copy all files from downloaded sources of new project Bar
(not my repository), and set reference in VisualStudio (it compiles Bar
than Foo
).
Now i change something in copied Bar
project and in my Foo
project. Go to "Git Extensions" and found, that new project Bar
included in my project Foo
as submodule, as expected.
I commit all changes in local and origins for Foo. That i want to commit all changes in Bar
, but i remember - it's not my project (i didn't clone it). I can commit changes only local. If i trying to pull changes it must be like "Pull request" to author of Bar
project.
What i need to do, that don't delete/recopy Bar
project? I just need clone it from author repo, than change settings in copied folder with repo (change origin from author's to my), and commit changes to my origin.
How i can do this? Thanks.