Skip to content

Instantly share code, notes, and snippets.

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 ricardodeazambuja/92fe1c5fe98339a4a9580114d037a890 to your computer and use it in GitHub Desktop.
Save ricardodeazambuja/92fe1c5fe98339a4a9580114d037a890 to your computer and use it in GitHub Desktop.
  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"
  5. Update remote:

    git push origin master

See blog post.

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