I usually paste error reports and logs on Gist at Github, to exchange programming relevant debug information. Gist doesn't have a button to upload a file. So sometimes it is not so convenient to copy and paste your large errorreports into gists textarea for input.
Is there a way to upload a file from the commandline into a new Gist in your Gist account?
also creating a temporary git repository for the file to upload would help, I would automate this in a script then.
In the end I would like to automate posting debug information of my programming project on github with one bash script
copy the embedding JavaScript code from GitHub and directly paste it in the body of the [gist] tag: [gist]<script src="https://gist.github.com/447298.js?file=github_gist_wordpress_plugin_test.txt"></script>[/gist]. (at your option) any later version.
How Do I Edit or Delete a Gist? In the top right corner of your gist page, there will be a menu that allows for multiple functions to be performed on your gist. We can edit, delete, unsubscribe, star, embed, copy, share, and download a raw copy or zipped copy of a gist.
Here is a solution that works for me on Bash/Dash to create anonymous gist (very probably not bullet-proof):
# 0. Your file name FNAME=some.file # 1. Somehow sanitize the file content # Remove \r (from Windows end-of-lines), # Replace tabs by \t # Replace " by \" # Replace EOL by \n CONTENT=$(sed -e 's/\r//' -e's/\t/\\t/g' -e 's/"/\\"/g' "${FNAME}" | awk '{ printf($0 "\\n") }') # 2. Build the JSON request read -r -d '' DESC <<EOF { "description": "some description", "public": true, "files": { "${FNAME}": { "content": "${CONTENT}" } } } EOF # 3. Use curl to send a POST request curl -X POST -d "${DESC}" "https://api.github.com/gists"
If you need to create a gist associated with your github account, (for basic authentication) replace the last line by:
curl -u "${GITHUB_USERNAME}" -X POST -d "${DESC}" "https://api.github.com/gists"
For more advanced authentification schemes, please see https://developer.github.com/v3/#authentication
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With