How to add an image to a gist

1.- Create a [gist](https://gist.github.com/)

2.- Clone your gist:

```shell
# make sure to replace `<hash>` with your gist's hash
git clone https://gist.github.com/<hash>.git # with https
git clone git@gist.github.com:<hash>.git     # or with ssh
```
3.- Open it & move your image

```shell
cd <hash>
mv ~/Desktop/image.jpg ~/Projects/gist/image.jpg
```

4.- Add your image to your gist's repository:

```shell
git add image.jpg
```

5.- Commit the image:

```shell
git commit -m "Add image"
```

6.- Update gist:

```shell
git push origin master
```

![image](https://gist.github.com/vicmaster/c054153c2922ad16b76a6255de35fcd6/raw/d6fc0d1e042e7fedeb4e2986dd4c4d3b27d6488d/ror_ultimate_guide_v1.png)

Victor Velazquez
April 22, 2021
