Contribution are most welcome! All tldr
pages are stored in Markdown right here on GitHub. Just open an issue or send a pull request and we'll merge it as soon as possible.
Note: when submitting a new command, don't forget to check if there's already a pull request in progress.
Note that tldr
is focused on concrete examples.
Here are a few guidelines to get started:
man
is for.{{source_file}}
or {{wallet.txt}}
.The best way to be consistent is to have a look at a few existing pages :).
The format of each page should match the following:
# command-name
> Short, snappy description.
> Preferably one line; two are acceptable if necessary.
- Example description:
`command -opt1 -opt2 -arg1 {{arg_value}}`
- Example description:
`command -opt1 -opt2`
We actually have a linter/formatter that enforces our format. It even automatically cleans up your pages for you! Installing it is easy:
npm install
tldr tldrl
User-provided values should use the {{token}}
syntax in order to allow clients
to highlight them.
Some examples:
tar cf {{file}}
ln -s {{path/to/original/file}} {{path/to/link}}
mysql {{database_name}}
unrar x {{compressed.rar}}
In short, make it as intuitive as possible for the user to figure out
how to use the command and fill it in with values.
Stick to snake_case
where possible.
In some situations a command works with typical file extensions
(like the unrar
example above); you are encouraged to add these for demonstration.
One of the reasons for this format is that it's well suited for command-line clients that need to extract a single description/example.
TL;DR: fork, clone, npm install
, feature branch, commit, push, pull request, check Travis.
Detailed explanation:
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory
git clone https://github.com/<your-username>/tldr
# Navigate to the newly cloned directory
cd tldr
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/tldr-pages/tldr
Setup pre-commit hooks with Markdown and TLDR linter.
# Assuming you have NodeJS
npm install
If you cloned a while ago, get the latest changes from upstream:
git checkout master
git pull upstream master
Create a new topic branch (sometimes they are called feature branches) off the main project development branch:
git checkout -b <topic-branch-name>
Run npm test
to check that your page(s) are correct. Try to run the commands you are describing to ensure the syntax is correct.
You can use the formatting features of tldr-lint
(installed through npm install
)
to automatically fix any mistakes you may have missed.
Try tldr tldrl
for a quick how-to.
<command>: type of change
.Examples:
ls: add page
cat: fix typo
git-push: add --force example
uname: fix -a example
Push your topic branch up to your fork:
git push origin <topic-branch-name>
Open a Pull Request with a clear title and description.
If page is not about a standard Unix/Linux tool, please include a link to the tool home page.
If you are changing something non-trivial, not just adding a page for a new tool, please describe why you are doing this.
Verify that the automatically ran Travis CI build passed. You can check this on your Pull Request; look for a green :heavy_check_mark: or red :x:.
Use Git's interactive rebase feature to tidy up your commits before making them public.
If you are not familiar with git rebase
, it might be helpful to check out these video tutorials:
In most cases it is better to squash commits before submitting a pull request.
If you do not want to do a rebasing, you can overwrite your last commit in pull request, while you have only a single commit. You can achieve this with git commit --amend
command.
# When you are on topic branch of your pull request
# Fix your files
git add . # Register edited files
git commit --amend # Do amended commit
git push --force # Overwrite your branch
tldr
is under MIT license.
IMPORTANT: By submitting a patch, you agree to license your work under the same license as that used by the project.
You're free to modify or redistribute the content. That being said, but why not contribute over here? :) Say if you wanted to have tldr
pages in groff
format, why not have a client that uses pandoc and periodically updates straight from this repo?