https://github.com/softprops/gist
it's like git with an s between the i and t
https://github.com/softprops/gist
Last synced: 8 months ago
JSON representation
it's like git with an s between the i and t
- Host: GitHub
- URL: https://github.com/softprops/gist
- Owner: softprops
- Created: 2012-07-02T05:36:46.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2013-08-27T01:50:40.000Z (almost 13 years ago)
- Last Synced: 2025-02-01T06:51:16.955Z (over 1 year ago)
- Language: Scala
- Homepage:
- Size: 772 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gist
gist: it's like git with an s between the i and t, on the command line
## install
Using [conscript](https://github.com/n8han/conscript)
cs softprops/gist
## usage
Gist is a client of a github service. You will need a github login to do useful things like:
Authenticate
gist auth ghuser:ghpass
Answer an age old question
gist whoami
Deauthenticate
gist auth -d
List your gists
gist ls
List list everyones gists
gist ls -p
List a specific user's gists
gist user :login
Show a gist
gist show :id
Show a gists contents
gist cat :id
Make a gist from arguments
git -c 'some text' -n 'a name'
Make a gist from a stream
cat file | gist -- -n 'a name'
Make a gist private
gist - :id
Make a gist public
gist + :id
Star a gist
gist star :id
Unstart a gist
gist start :id -d
Delete a gist
gist rm :id
Doug Tangren (softprops) 2012