I’m somewhat new to Git.
So, my task is to make 3 branches, for 3 developers, that would connect only to their branch and work only with their own branch.
Something like this:
developer 1 == branch 1
developer 2 == branch 2
Any help or tutorials will be helpful.
They just should do this:
developer 1:
git checkout branch1developer 2:
git checkout branch2developer 3:
git checkout branch3So they will use their own branches.
pushwill be only to branches that they are checkouted.But they can use another branch, if they want. So, if you want to deny them to use another branch, just create separate repository for every developer.