gitlab
Use gitlab’s https link when logged in with Google Account
You can actually use the https link if you login using a Google, Twitter or GitHub link but you have to have an actual GitLab password. If you’ve already created your account by logging in with a social network, all you have to do is use the Forgot Password feature. log out and then use … Read more
Git push failed with error: “GitLab: Author not member of team”
It’s not git push that’s using your username + hostname, it’s git commit. By default, if you did not set user.name and user.email BEFORE making a commit, git will get it from your computer name and hostname. It would also have shown you a warning like this: Committer: user1234 <[email protected]> Your name and email address … Read more
Updating pull request after review changes commit doesn’t show up in the pull request
First, make sure that you did push to the right branch and that the commit still doesn’t show up in the PR. For me, the commit showed up when I viewed the specific branch in the repo, but didn’t show in the PR and didn’t trigger CI. This is what fixed the issue for me: … Read more
Move repository from one group to another in GitLab
Yes, you can move your GitLab project from one namespace to another. Your project -> Settings -> General -> Advanced Then, almost at the end of the list. Transfer project
How to duplicate a git repository on gitlab/github without forking?
In gitlab there is functionality out of the box: Go to Settings -> General of existing project Last expanded panel Advanced contains Export button. Click it and then on the top of this page you can see info message Project export started. A download link will be sent by email. Check email. There is following … Read more
Gitlab: team member project access levels
2013: The project_security_spec.rb test each profile capabilities, which are listed in ability.rb: (2017 GitLab 10.x: this would be more likely in app/policies/project_policy.rb) See also, as noted in jdhao’s answer: “Project members permissions” Those rules are quite explicit: def public_project_rules [ :download_code, :fork_project, :read_project, :read_wiki, :read_issue, :read_milestone, :read_project_snippet, :read_team_member, :read_merge_request, :read_note, :write_issue, :write_note ] end def … Read more