Changing image size in Markdown on Gitlab

Raw HTML works Try the following: after uploading your image, use img tag with src pointing to the path of uploaded image, for me it’s working: The following is from one of my files ![](/uploads/d19fcc3d3b4d313c8cd7960a343463b6/table.png) <img src=”/uploads/d19fcc3d3b4d313c8cd7960a343463b6/table.png” width=”120″ height=”120″> Check this link, where I’ve put different size of same image https://gitlab.com/Basel.issmail/resize-image/wikis/resizing-image There is an issue … Read more

What are the pros and cons of git-flow vs github-flow? [closed]

As discussed in GitMinutes episode 17, by Nicholas Zakas in his article on “GitHub workflows inside of a company”: Git-flow is a process for managing changes in Git that was created by Vincent Driessen and accompanied by some Git extensions for managing that flow. The general idea behind git-flow is to have several separate branches … Read more

Install npm module from gitlab private repository

You have the following methods for connecting to a private gitlab repository With SSH git+ssh://git@git.mydomain.com:Username/Repository#{branch|tag} git+ssh://git@git.mydomain.com/Username/Repository#{branch|tag} With HTTPS git+https://git@git.mydomain.com/Username/Repository#{branch|tag} With HTTPS and deploy token git+https://<token-name>:<token>@gitlab.com/Username/Repository#{branch|tag}

How to clone all projects of a group at once in GitLab?

One liner with curl, jq, tr: for repo in $(curl -s –header “PRIVATE-TOKEN: your_private_token” https://<your-host>/api/v4/groups/<group_id> | jq -r “.projects[].ssh_url_to_repo”); do git clone $repo; done; For Gitlab.com use https://gitlab.com/api/v4/groups/<group_id> To include subgroups add include_subgroups=true query param like https://<your-host>/api/v4/groups/<group_id>?include_subgroups=true Note: To clone with http url use http_url_to_repo instead of ssh_url_to_repo in jq (Thanks @MattVon for the comment)

Import an existing git project into GitLab?

I was able to fully export my project along with all commits, branches and tags to gitlab via following commands run locally on my computer: To illustrate my example, I will be using https://github.com/raveren/kint as the source repository that I want to import into gitlab. I created an empty project named Kint (under namespace raveren) … Read more