a cheat sheet tool based on git
Chit is a command line cheat sheet utility based on git.
Chit was inspired by ‘cheat’ (http://cheat.errtheblog.com/) by Chris Wanstrath. You can use chit to access and manage cheat sheets easily.
There are several differences between ‘cheat’ and ‘chit’. By using chit, besides the wonderful features of ‘cheat’, you get:
To initialize chit repositories
$ chit --init
This will be run automatically when you run chit for the first time.
To get a cheat sheet:
$ chit [cheatsheet]
To edit a cheat sheet, use the --edit/-e switch.
$ chit [cheatsheet] --edit
To add a cheat sheet, use the --add/-a switch.
$ chit [cheatsheet] --add
During editing a cheat sheet, empty the content will get the cheat sheet removed.
A prefix ‘@’ indicates the cheat sheet is in private mode. A private cheat sheet is kept in another repository.
To get your private cheat sheet:
$ chit @[cheatsheet]
The prefix ‘@’ works the same for both --edit/-e and --add/-a.
The cheat sheet can be in a path. For example:
$ chit mysql/select
will get the cheat sheet ‘select’ under mysql.
To show all the cheat sheets:
$ chit [all|sheets]
To show all the private cheat sheets:
$ chit @[all|sheets]
To find cheat sheets begin with ‘name’, use the --find/-f switch
$ chit name --find
To search cheat sheets content with ‘text’, use the --search/-s switch
$ chit text --search
To move or rename a sheet, use ‘–mv/-m’ switch
$ chit zsh_if zsh/if -m
sudo gem install chit
chit --init
Before run ‘chit’, you may want to config ~/.chitrc which is a YAML file.
This software is shared by MIT License
Copyright © 2008 Robin Lu
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
‘Software’), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Robin Lu
iamawalrus[at]gmail[dot]com