13

The title says it all. I took a look into GitLab docs but couldn't find clear-cut solution to this.

How do I add image to readme on GitLab ? Image that's within the repo.

mr_incredible
  • 837
  • 2
  • 8
  • 21

4 Answers4

8

You can use below ![image info](images/image.png) where images could be a directory in your project structure.

kwick
  • 333
  • 3
  • 9
5

Use ![IMAGE_DESCRIPTION](url_of_image)

Deepak Patankar
  • 3,076
  • 3
  • 16
  • 35
3

From the docs

Inline-style (hover to see title text):

![alt text](img/markdown_logo.png "Title Text")

Reference-style (hover to see title text):

![alt text1][logo]

[logo]: img/markdown_logo.png "Title Text"
-1

for more info. create issue and upload image /copy url of image to IMAGE_DESCRIPTION

udorb b
  • 135
  • 3