I am new to gitlab. I have successfully created unprotected branches dev & design with master role in project testapp with the following commands:
git checkout -b dev
git checkout -b design
Then I push all the files successfully to both branches.
Later on I run the following command to make my branches remotely :
git branch dev
git branch design
Now the issue is, my team member whom I have added in project with developer role is not able to list out branches dev & design and also not able to push to those branches. He try to push with following commands:
git add .
git commit
git push -u origin dev
Please list the steps for me. Thanks