0

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?

torek
  • 448,244
  • 59
  • 642
  • 775
Arslan
  • 194
  • 1
  • 10

1 Answers1

0

You can link the same project to two different repositories and push to or pull from anyone you want at any time.

git remote add remoteOne <repository address 1>

git remote add remoteTwo <repository address 2>

So, as you proceed, you can do git push remoteOne or git push remotewo after you commit your progress