Skip to content

Instantly share code, notes, and snippets.

@MartinDelille
Forked from gr2m/triplet-color-theory.jpg
Last active November 25, 2019 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MartinDelille/ca249f6cd0939ee74bf3c65a3224572e to your computer and use it in GitHub Desktop.
Save MartinDelille/ca249f6cd0939ee74bf3c65a3224572e to your computer and use it in GitHub Desktop.

Add an image to your gist

Credit: How to add an image to a gist

  1. Create or find a gist that you own.

  2. Clone your gist (replace <hash> with your gist's hash):

    # with ssh
    git clone git@gist.github.com:<hash>.git mygist
    
    # with https
    git clone https://gist.github.com/<hash>.git mygist
  3. Change to your gist’s directory:

    cd mygist
  4. Add and commit the image:

    git add tulip.jpg
    git commit -m "Add tulip to gist"

    The ideal size is 844 × 200 pixels.

  5. Update remote:

    git push origin master

Pin image to your GitHub profile

On your GitHub profile page, press "Customize your pins" and find the Gist you just created.

See @nat’s twitter announcement for an animated explanation

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