The issue I'm facing is I'm working on a Flutter application that's going to be used by clients (schools). Some clients requested to have their own separate apps, with exactly the same functions as the main one, but with different name, different server, different FCM, etc.
I tried solving this by making a branch for each client (luckily there aren't many, fewer than 10). So what will be happening is once I make changes or new features to the main app (at master branch), I'll have to make the same changes to the other apps (at other branches), and I'm wondering if I could be able to pull the changes from the master to the other branches locally by a simple command?
git pull origin master
This commands pulls the changes from the remote master branch to the local master branch, but I want to pull the changes from the local master branch to the other local branches. How to do that? Is it possible?