Skip to content

Instantly share code, notes, and snippets.

@remarkablemark
Last active October 23, 2022 08:55
Show Gist options
  • Save remarkablemark/feff40b0a522f0c41c4eff0b77ea1d47 to your computer and use it in GitHub Desktop.
Save remarkablemark/feff40b0a522f0c41c4eff0b77ea1d47 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.

@blurymind
Copy link

can we do this without file system access and by using the REST api instead? I need to be able to do it from a mobile pwa

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