matthewselby
4/3/2017 - 7:08 PM

An example to send feedback to Codecademy in the course feedback area

An example to send feedback to Codecademy in the course feedback area

Here is my feedback example Title

Some feedback notes and stuff goes here.

Here's a feedback list

  • List item 1
  • List item 2
  • List item 3

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 git@gist.github.com:<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