Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cheat/cheatsheets
Community-sourced cheatsheets
https://github.com/cheat/cheatsheets
cheat cheatsheets reference
Last synced: 1 day ago
JSON representation
Community-sourced cheatsheets
- Host: GitHub
- URL: https://github.com/cheat/cheatsheets
- Owner: cheat
- Created: 2019-10-17T01:52:19.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T06:18:17.000Z (5 months ago)
- Last Synced: 2024-11-11T17:51:29.526Z (2 months ago)
- Topics: cheat, cheatsheets, reference
- Language: Shell
- Homepage:
- Size: 523 KB
- Stars: 1,838
- Watchers: 36
- Forks: 343
- Open Issues: 37
-
Metadata Files:
- Readme: .github/README.md
- Changelog: history
- Audit: auditd
Awesome Lists containing this project
- awesome - cheat/cheatsheets - Community-sourced cheatsheets (Shell)
- awesome-starred-test - cheat/cheatsheets - Community-sourced cheatsheets (Shell)
- awesome-starz - cheat/cheatsheets - Community-sourced cheatsheets (Shell)
- jimsghstars - cheat/cheatsheets - Community-sourced cheatsheets (Shell)
README
cheatsheets
===========
This repository contains community-sourced cheatsheets to be used with
[cheat][] and similar applications.### Format ###
Cheatsheets are plain-text files that begin with an optional "front matter"
header in YAML format. The header may be used to assign "tags" to a sheet, and
to specify the sheet's syntax (`bash`, `python`, `go`, etc).When possible, cheatsheets should conform to this format:
```sh
---
syntax: bash
tags: [ vcs, development ]
---
# To stage all changes in the current directory:
git add --all# To commit staged changes:
git commit -m
```As a guideline, it is preferred to use [docopt][] syntax when specifying
parameter placeholders. In edge-cases where that syntax may cause confusion, it
is permissible to use placeholder values (`foo.txt`, `example.com`, etc.) as
necessary.### License ###
Cheatsheets are licensed under [Creative Commons CC0 1.0][cc0]. See
[LICENSE.txt][] for the full license text.[LICENSE.txt]: https://github.com/cheat/cheatsheets/blob/master/.github/LICENSE.txt
[cc0]: https://creativecommons.org/publicdomain/zero/1.0/legalcode
[cheat]: https://github.com/cheat/cheat
[docopt]: http://docopt.org