Home > OS >  same flutter project but different git repository
same flutter project but different git repository

Time:08-03

I have the same flutter project but I want two different apps from the same project because the client wants some minor changes but the other client didn’t. Also, both client wants their specific apps on the play store and app store as well and requested code as well. I want to copy my existing project so I can match the second client's requirements without doing any changes to the first one. can I be able to change the project origin URL to the new one?

CodePudding user response:

But the client wants to use his own repo

you can try with upstream maybe?

https://stackoverflow.com/a/9257901/12838877

CodePudding user response:

You can try pushing to your his repo simultaneously since he wants the code to be uploaded to his repo.

https://stackoverflow.com/a/4255934/11345007

  • Related