Reputation: 18629
My senior created a project on gitLab and gave me read only access and asked me to clone it, make changes and submit back to his project in gitLab for his review before merging.
I cloned that repo from gitLab. I created new project with my account on gitLab (of course I have write access on my project) from the earlier cloned repo. I made changes. Now I want to submit repo in my project of my account for review to My senior's project of his account in gitLab
How do I achieve it?
Upvotes: 4
Views: 6338
Reputation: 1327004
If you are working with the same GitLab repo as your senior, in which you have only the right to create a branch, then you would do a merge request.
But if you are working with a clone of that repo on GitLab side (ie a fork), and you clone locally that fork, meaning you have full access to that GitLab repo, then:
Upvotes: 4