Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mroderick/1afdd71aa69f6b29601d335751a1a9be to your computer and use it in GitHub Desktop.
Save mroderick/1afdd71aa69f6b29601d335751a1a9be to your computer and use it in GitHub Desktop.
How to add an image to a gist

How to add an image to a gist

  1. Create a gist if you haven't already.

  2. Clone your gist:

    # make sure to replace `<hash>` with your gist's hash
    git clone https://gist.github.com/<hash>.git # with https
    git clone [email protected]:<hash>.git     # or with ssh
  3. Add your image to your gist's repository:

    git add your-image.jpg
  4. Commit the image:

    git commit -m "Add image"
  5. Update gist:

    git push origin master
@desrod
Copy link

desrod commented Jul 4, 2025

I just came here to mention that this no longer works.

You can clone the gist, add the image, push the image back to the gist, but then it overwrites the gist with just the image, and pushes the .md file as an unpreviewable attachment, which can only be viewed in 'Raw' mode.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment