Works great with Gist: The Website.
$ brew install gist
$ gist -h
RubyGems:
$ gem install gist
$ gist -h
Old school:
$ curl -s https://raw.github.com/defunkt/gist/master/gist > gist &&
$ chmod 755 gist &&
$ mv gist /usr/local/bin/gist
Ubuntu:
$ sudo apt-get install ruby
$ sudo apt-get install rubygems
$ sudo apt-get install libopenssl-ruby
$ sudo gem install gist
$ sudo cp /var/lib/gems/1.8/bin/gist /usr/local/bin/
$ gist -h
$ gist < file.txt
$ echo secret | gist --private # or -p
$ echo "puts :hi" | gist -t rb
$ gist script.py
$ gist script.js notes.txt
$ pbpaste | gist -p # Copy from clipboard - OSX Only
$ gist -
the quick brown fox jumps over the lazy dog
^D
Authentication is a simple process:
$ gist --login
Obtaining OAuth2 access_token from github.
Github username: dr4g0nnn
Github password:
Success! https://github.com/settings/applications
$
This fetches an OAuth token from GitHub and stores it in '~/.gist'; your username and password are not stored and are only ever transmitted over HTTPS.
You can set a few options in your git config (using git-config(1)) to control the default behavior of gist(1).
-
gist.private - boolean (yes or no) - Determines whether to make a gist private by default
-
gist.extension - string - Default extension for gists you create.
-
gist.browse - boolean (yes or no) - Whether to open the gist in your browser after creation. Default: yes
Set the HTTP_PROXY env variable to use a proxy.
$ HTTP_PROXY=host:port gist file.rb
Visit http://defunkt.github.com/gist/ or use:
$ gist -m