gitlab
Remove releases in GitLab
Go to Project Overview -> Releases Click the release you want to delete Scroll to the bottom. Find the tag icon. Click on the tag. There is a trash can button for the tag. Deleting the tag will delete the release as well.
How do you center text in Gitlab markdown?
Update I checked out an old project of mine and noticed that it was already centered. It turns out that CommonMark allows you to set align=”center” on <div> tags as well! So, the simplest solution for centering is currently (note the empty line after the opening <div>: <div align=”center”> # This is gonna be centered! … Read more
List all the projects and all the groups
If only your private token is available, you can only use the API: PROJECTS Use the following command to request projects: curl “https://<host>/api/v4/projects?private_token=<your private token>” This will return you the first 20 entries. To get more you can add the paramater per_page curl “https://<host>/api/v4/projects?private_token=<your private token>&per_page=100” with this parameter you can request between 20and 100 … Read more
remote: GitLab: You are not allowed to push code to protected branches on this project
12/17/2018 1. git push: “error: failed to push some refs to” git push -f: “remote rejected” 2. the branch is in a protected state and cannot be forced to operate. Gitlab – Repository – Branches 3. temporarily remove branch protection. Gitlab – Settings – Repository – Protected Branches – Unprotect 4. try pushing again git … Read more
Is it possible to delete issues on GitLab?
It is now possible to delete issues starting with GitLab 8.6: GitLab 8.6 released with Deploy to Kubernetes and Subscribe to Label Delete Issues Sometimes, simply closing an issue or merge request is not sufficient. For those times, we are now making it possible to delete issues and merge requests. Only owners can delete issues … Read more