1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 21:46:03 +02:00

multiple pages: add homepages (#2660)

This commit is contained in:
Starbeamrainbowlabs 2019-01-30 11:19:23 +00:00 committed by GitHub
parent 1064ba26db
commit a19866e88a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
62 changed files with 62 additions and 0 deletions

View file

@ -1,6 +1,7 @@
# 7z # 7z
> A file archiver with high compression ratio. > A file archiver with high compression ratio.
> Homepage: <https://www.7-zip.org/>.
- Archive a file or folder: - Archive a file or folder:

View file

@ -2,6 +2,7 @@
> A file archiver with high compression ratio. > A file archiver with high compression ratio.
> A standalone version of `7z` with support for fewer archive types. > A standalone version of `7z` with support for fewer archive types.
> Homepage: <https://www.7-zip.org/>.
- Archive a file or folder: - Archive a file or folder:

View file

@ -2,6 +2,7 @@
> A file archiver with high compression ratio. > A file archiver with high compression ratio.
> A standalone version of `7z` that only supports .7z files. > A standalone version of `7z` that only supports .7z files.
> Homepage: <https://www.7-zip.org/>.
- Archive a file or folder: - Archive a file or folder:

View file

@ -1,6 +1,7 @@
# ansible-galaxy # ansible-galaxy
> Create and manage Ansible roles. > Create and manage Ansible roles.
> Homepage: <https://docs.ansible.com/ansible/latest/cli/ansible-galaxy.html>.
- Install a role: - Install a role:

View file

@ -1,6 +1,7 @@
# ansible-playbook # ansible-playbook
> Execute tasks defined in playbook on remote machines over SSH. > Execute tasks defined in playbook on remote machines over SSH.
> Homepage: <https://docs.ansible.com/ansible/latest/cli/ansible-playbook.html>.
- Run tasks in playbook: - Run tasks in playbook:

View file

@ -2,6 +2,7 @@
> Manage groups of computers remotely over SSH. > Manage groups of computers remotely over SSH.
> Use the /etc/ansible/hosts file to add new groups/hosts. > Use the /etc/ansible/hosts file to add new groups/hosts.
> Homepage: <https://www.ansible.com/>.
- List hosts belonging to a group: - List hosts belonging to a group:

View file

@ -1,6 +1,7 @@
# code # code
> Visual Studio Code. > Visual Studio Code.
> Homepage: <https://github.com/microsoft/vscode>.
- Open VS Code: - Open VS Code:

View file

@ -1,6 +1,7 @@
# git add # git add
> Adds changed files to the index. > Adds changed files to the index.
> Homepage: <https://git-scm.com/docs/git-add>.
- Add a file to the index: - Add a file to the index:

View file

@ -2,6 +2,7 @@
> Apply patch files. Useful when receiving commits via email. > Apply patch files. Useful when receiving commits via email.
> See also `git format-patch`, which can generate patch files. > See also `git format-patch`, which can generate patch files.
> Homepage: <https://git-scm.com/docs/git-am>.
- Apply a patch file: - Apply a patch file:

View file

@ -2,6 +2,7 @@
> Use binary search to find the commit that introduced a bug. > Use binary search to find the commit that introduced a bug.
> Git automatically jumps back and forth in the commit graph to progressively narrow down the faulty commit. > Git automatically jumps back and forth in the commit graph to progressively narrow down the faulty commit.
> Homepage: <https://git-scm.com/docs/git-bisect>.
- Start a bisect session on a commit range bounded by a known buggy commit, and a known clean (typically older) one: - Start a bisect session on a commit range bounded by a known buggy commit, and a known clean (typically older) one:

View file

@ -1,6 +1,7 @@
# git blame # git blame
> Show commit hash and last author on each line of a file. > Show commit hash and last author on each line of a file.
> Homepage: <https://git-scm.com/docs/git-blame>.
- Print file with author name and commit hash on each line: - Print file with author name and commit hash on each line:

View file

@ -1,6 +1,7 @@
# git branch # git branch
> Main git command for working with branches. > Main git command for working with branches.
> Homepage: <https://git-scm.com/docs/git-branch>.
- List local branches. The current branch is highlighted by `*`: - List local branches. The current branch is highlighted by `*`:

View file

@ -1,6 +1,7 @@
# git checkout # git checkout
> Checkout a branch or paths to the working tree. > Checkout a branch or paths to the working tree.
> Homepage: <https://git-scm.com/docs/git-checkout>.
- Create and switch to a new branch: - Create and switch to a new branch:

View file

@ -2,6 +2,7 @@
> Apply the changes introduced by existing commits to the current branch. > Apply the changes introduced by existing commits to the current branch.
> To apply changes to another branch, first use git-checkout to switch to the desired branch. > To apply changes to another branch, first use git-checkout to switch to the desired branch.
> Homepage: <https://git-scm.com/docs/git-cherry-pick>.
- Apply a commit to the current branch: - Apply a commit to the current branch:

View file

@ -1,6 +1,7 @@
# git clean # git clean
> Remove untracked files from the working tree. > Remove untracked files from the working tree.
> Homepage: <https://git-scm.com/docs/git-clean>.
- Delete files that are not tracked by git: - Delete files that are not tracked by git:

View file

@ -1,6 +1,7 @@
# git clone # git clone
> Clone an existing repository. > Clone an existing repository.
> Homepage: <https://git-scm.com/docs/git-clone>.
- Clone an existing repository: - Clone an existing repository:

View file

@ -1,6 +1,7 @@
# git commit # git commit
> Commit files to the repository. > Commit files to the repository.
> Homepage: <https://git-scm.com/docs/git-commit>.
- Commit staged files to the repository with a message: - Commit staged files to the repository with a message:

View file

@ -2,6 +2,7 @@
> Manage custom configuration options for git repositories. > Manage custom configuration options for git repositories.
> These configurations can be local (for the current repository) or global (for the current user). > These configurations can be local (for the current repository) or global (for the current user).
> Homepage: <https://git-scm.com/docs/git-config>.
- List only local configuration entries (stored in `.git/config` in the current repository): - List only local configuration entries (stored in `.git/config` in the current repository):

View file

@ -1,6 +1,7 @@
# git diff # git diff
> Show changes to tracked files. > Show changes to tracked files.
> Homepage: <https://git-scm.com/docs/git-diff>.
- Show unstaged, uncommitted changes: - Show unstaged, uncommitted changes:

View file

@ -1,6 +1,7 @@
# git fetch # git fetch
> Download objects and refs from a remote repository. > Download objects and refs from a remote repository.
> Homepage: <https://git-scm.com/docs/git-fetch>.
- Fetch the latest changes from the default remote upstream repository (if set): - Fetch the latest changes from the default remote upstream repository (if set):

View file

@ -2,6 +2,7 @@
> Prepare .patch files. Useful when emailing commits elsewhere. > Prepare .patch files. Useful when emailing commits elsewhere.
> See also `git am`, which can apply generated .patch files. > See also `git am`, which can apply generated .patch files.
> Homepage: <https://git-scm.com/docs/git-format-patch>.
- Create an auto-named .patch file for all the unpushed commits: - Create an auto-named .patch file for all the unpushed commits:

View file

@ -1,6 +1,7 @@
# git gc # git gc
> Optimise the local repository by cleaning unnecessary files. > Optimise the local repository by cleaning unnecessary files.
> Homepage: <https://git-scm.com/docs/git-gc>.
- Optimise the repository: - Optimise the repository:

View file

@ -2,6 +2,7 @@
> Perform a merge or rebase between two git branches incrementally. > Perform a merge or rebase between two git branches incrementally.
> Conflicts between branches are tracked down to pairs of individual commits, to simplify conflict resolution. > Conflicts between branches are tracked down to pairs of individual commits, to simplify conflict resolution.
> Homepage: <https://github.com/mhagger/git-imerge>.
- Start imerge-based rebase (checkout the branch to be rebased, first): - Start imerge-based rebase (checkout the branch to be rebased, first):

View file

@ -1,6 +1,7 @@
# git init # git init
> Initializes a new local Git repository. > Initializes a new local Git repository.
> Homepage: <https://git-scm.com/docs/git-init>.
- Initialize a new local repository: - Initialize a new local repository:

View file

@ -1,6 +1,7 @@
# git log # git log
> Show a history of commits. > Show a history of commits.
> Homepage: <https://git-scm.com/docs/git-log>.
- Show the sequence of commits starting from the current one, in reverse chronological order: - Show the sequence of commits starting from the current one, in reverse chronological order:

View file

@ -1,6 +1,7 @@
# git merge # git merge
> Merge branches. > Merge branches.
> Homepage: <https://git-scm.com/docs/git-merge>.
- Merge a branch with your current branch: - Merge a branch with your current branch:

View file

@ -1,6 +1,7 @@
# git mv # git mv
> Move or rename files and update the git index. > Move or rename files and update the git index.
> Homepage: <https://git-scm.com/docs/git-mv>.
- Move file inside the repo and add the movement to the next commit: - Move file inside the repo and add the movement to the next commit:

View file

@ -1,6 +1,7 @@
# git pull # git pull
> Fetch branch from a remote repository and merge it to local repository. > Fetch branch from a remote repository and merge it to local repository.
> Homepage: <https://git-scm.com/docs/git-pull>.
- Download changes from default remote repository and merge it: - Download changes from default remote repository and merge it:

View file

@ -1,6 +1,7 @@
# git push # git push
> Push commits to a remote repository. > Push commits to a remote repository.
> Homepage: <https://git-scm.com/docs/git-push>.
- Send local changes in the current branch to its remote counterpart: - Send local changes in the current branch to its remote counterpart:

View file

@ -2,6 +2,7 @@
> Reapply commits from one branch on top of another branch. > Reapply commits from one branch on top of another branch.
> Commonly used to "move" an entire branch to another base, creating copies of the commits in the new location. > Commonly used to "move" an entire branch to another base, creating copies of the commits in the new location.
> Homepage: <https://git-scm.com/docs/git-rebase>.
- Rebase the current branch on top of the master branch: - Rebase the current branch on top of the master branch:

View file

@ -1,6 +1,7 @@
# git reflog # git reflog
> Show when the reference logs were updated in local repository. > Show when the reference logs were updated in local repository.
> Homepage: <https://git-scm.com/docs/git-reflog>.
- View reflog: - View reflog:

View file

@ -1,6 +1,7 @@
# git remote # git remote
> Manage set of tracked repositories ("remotes"). > Manage set of tracked repositories ("remotes").
> Homepage: <https://git-scm.com/docs/git-remote>.
- Show a list of existing remotes, their names and URL: - Show a list of existing remotes, their names and URL:

View file

@ -2,6 +2,7 @@
> Undo commits or unstage changes, by resetting the current git HEAD to the specified state. > Undo commits or unstage changes, by resetting the current git HEAD to the specified state.
> If a path is passed, it works as "unstage"; if a commit hash or branch is passed, it works as "uncommit". > If a path is passed, it works as "unstage"; if a commit hash or branch is passed, it works as "uncommit".
> Homepage: <https://git-scm.com/docs/git-reset>.
- Unstage everything: - Unstage everything:

View file

@ -1,6 +1,7 @@
# git rm # git rm
> Remove files from repository index and local filesystem. > Remove files from repository index and local filesystem.
> Homepage: <https://git-scm.com/docs/git-rm>.
- Remove file from repository index and filesystem: - Remove file from repository index and filesystem:

View file

@ -1,6 +1,7 @@
# git shortlog # git shortlog
> Summarizes the `git log` output. > Summarizes the `git log` output.
> Homepage: <https://git-scm.com/docs/git-shortlog>.
- View a summary of all the commits made, grouped alphabetically by author name: - View a summary of all the commits made, grouped alphabetically by author name:

View file

@ -1,6 +1,7 @@
# git show # git show
> Show various types of git objects (commits, tags, etc.). > Show various types of git objects (commits, tags, etc.).
> Homepage: <https://git-scm.com/docs/git-show>.
- Show information about the latest commit (message, changes, and other metadata): - Show information about the latest commit (message, changes, and other metadata):

View file

@ -1,6 +1,7 @@
# git sizer # git sizer
> Computes various Git repository size metrics and alerts you to any that might cause problems or inconvenience. > Computes various Git repository size metrics and alerts you to any that might cause problems or inconvenience.
> Homepage: <https://github.com/github/git-sizer>.
- Report only statistics that have a level of concern greater than 0: - Report only statistics that have a level of concern greater than 0:

View file

@ -1,6 +1,7 @@
# git stash # git stash
> Stash local Git changes in a temporary area. > Stash local Git changes in a temporary area.
> Homepage: <https://git-scm.com/docs/git-stash>.
- Stash current changes, except new (untracked) files: - Stash current changes, except new (untracked) files:

View file

@ -1,6 +1,7 @@
# git status # git status
> Show the index (changed files). > Show the index (changed files).
> Homepage: <https://git-scm.com/docs/git-status>.
- Show changed files which are not yet added for commit: - Show changed files which are not yet added for commit:

View file

@ -1,6 +1,7 @@
# git submodule # git submodule
> Inspects, updates and manages submodules. > Inspects, updates and manages submodules.
> Homepage: <https://git-scm.com/docs/git-submodule>.
- Install a repository's specified submodules: - Install a repository's specified submodules:

View file

@ -1,6 +1,7 @@
# git svn # git svn
> Bidirectional operation between a Subversion repository and Git. > Bidirectional operation between a Subversion repository and Git.
> Homepage: <https://git-scm.com/docs/git-svn>.
- Clone an SVN repository: - Clone an SVN repository:

View file

@ -2,6 +2,7 @@
> Create, list, delete or verify tags. > Create, list, delete or verify tags.
> A tag is a static reference to a specific commit. > A tag is a static reference to a specific commit.
> Homepage: <https://git-scm.com/docs/git-tag>.
- List all tags: - List all tags:

View file

@ -1,6 +1,7 @@
# git worktree # git worktree
> Manage multiple working trees attached to the same repository. > Manage multiple working trees attached to the same repository.
> Homepage: <https://git-scm.com/docs/git-worktree>.
- Create a new folder with the specified branch checked out into it: - Create a new folder with the specified branch checked out into it:

View file

@ -1,6 +1,7 @@
# git # git
> Distributed version control system. > Distributed version control system.
> Homepage: <https://git-scm.com/>.
- Check the Git version: - Check the Git version:

View file

@ -1,6 +1,7 @@
# gitk # gitk
> A graphical git repository browser. > A graphical git repository browser.
> Homepage: <https://git-scm.com/docs/gitk>.
- Show the repository browser for the current git repository: - Show the repository browser for the current git repository:

View file

@ -2,6 +2,7 @@
> A terminal-based interface for GitHub, accessed via the `gh` command. > A terminal-based interface for GitHub, accessed via the `gh` command.
> It also provides menu-style autocomplete suggestions for `git` commands. > It also provides menu-style autocomplete suggestions for `git` commands.
> Homepage: <https://github.com/donnemartin/gitsome>.
- Enter the gitsome shell (optional), to enable autocompletion and interactive help for git (and gh) commands: - Enter the gitsome shell (optional), to enable autocompletion and interactive help for git (and gh) commands:

View file

@ -1,6 +1,7 @@
# hyperfine # hyperfine
> A command-line benchmarking tool. > A command-line benchmarking tool.
> Homepage: <https://github.com/sharkdp/hyperfine/>.
- Run a basic benchmark, performing at least 10 runs: - Run a basic benchmark, performing at least 10 runs:

View file

@ -1,6 +1,7 @@
# monodis # monodis
> The Mono Common Intermediate Language (CIL) disassembler. > The Mono Common Intermediate Language (CIL) disassembler.
> Homepage: <https://www.mono-project.com/docs/tools+libraries/tools/monodis/>.
- Disassemble an assembly to textual CIL: - Disassemble an assembly to textual CIL:

View file

@ -1,6 +1,7 @@
# mysql # mysql
> The MySQL command-line tool. > The MySQL command-line tool.
> Homepage: <https://www.mysql.com/>.
- Connect to a database: - Connect to a database:

View file

@ -1,6 +1,7 @@
# mysqldump # mysqldump
> Backups MySQL databases. > Backups MySQL databases.
> Homepage: <https://dev.mysql.com/doc/refman/en/mysqldump.html>.
- Create a backup, user will be prompted for a password: - Create a backup, user will be prompted for a password:

View file

@ -1,6 +1,7 @@
# nginx # nginx
> Nginx web server. > Nginx web server.
> Homepage: <https://nginx.org/en/>.
- Start server with the default config file: - Start server with the default config file:

View file

@ -1,6 +1,7 @@
# npm-check # npm-check
> Check for outdated, incorrect, and unused npm package dependencies. > Check for outdated, incorrect, and unused npm package dependencies.
> Homepage: <https://www.npmjs.com/package/npm-check/>.
- Display a report of outdated, incorrect, and unused dependencies: - Display a report of outdated, incorrect, and unused dependencies:

View file

@ -2,6 +2,7 @@
> JavaScript and Node.js package manager. > JavaScript and Node.js package manager.
> Manage Node.js projects and their module dependencies. > Manage Node.js projects and their module dependencies.
> Homepage: <https://www.npmjs.com/>.
- Download and install a module globally: - Download and install a module globally:

View file

@ -1,6 +1,7 @@
# prosodyctl # prosodyctl
> The control tool for the Prosody XMPP server. > The control tool for the Prosody XMPP server.
> Homepage: <https://prosody.im/doc/prosodyctl/>.
- Show the status of the Prosody server: - Show the status of the Prosody server:

View file

@ -2,6 +2,7 @@
> Toolkit for deploying and operating serverless architectures on AWS, Google Cloud, Azure and IBM OpenWhisk. > Toolkit for deploying and operating serverless architectures on AWS, Google Cloud, Azure and IBM OpenWhisk.
> Commands can be run either using the `serverless` command or it's alias, `sls`. > Commands can be run either using the `serverless` command or it's alias, `sls`.
> Homepage: <https://serverless.com/>.
- Create a serverless project: - Create a serverless project:

View file

@ -1,6 +1,7 @@
# shellcheck # shellcheck
> Shell script static analysis tool. > Shell script static analysis tool.
> Homepage: <https://www.shellcheck.net/>.
- Check a shell script: - Check a shell script:

View file

@ -1,6 +1,7 @@
# terraform # terraform
> Create and deploy infrastructure as code to cloud providers. > Create and deploy infrastructure as code to cloud providers.
> Homepage: <https://www.terraform.io/>.
- Initialize a new or existing Terraform configuration: - Initialize a new or existing Terraform configuration:

View file

@ -1,6 +1,7 @@
# virtualenv # virtualenv
> Create virtual isolated Python environments. > Create virtual isolated Python environments.
> Homepage: <https://virtualenv.pypa.io/>.
- Create a new environment: - Create a new environment:

View file

@ -1,6 +1,7 @@
# weasyprint # weasyprint
> Render HTML to PDF or PNG. > Render HTML to PDF or PNG.
> Homepage: <https://weasyprint.org/>.
- Render a HTML file to PDF: - Render a HTML file to PDF:

View file

@ -1,6 +1,7 @@
# x_x # x_x
> View Excel and CSV files from the command-line. > View Excel and CSV files from the command-line.
> Homepage: <https://github.com/kristianperkins/x_x>.
- View an XLSX or CSV file: - View an XLSX or CSV file:

View file

@ -1,6 +1,7 @@
# yarn # yarn
> JavaScript and Node.js package manager alternative. > JavaScript and Node.js package manager alternative.
> Homepage: <https://yarnpkg.com>.
- Install a module globally: - Install a module globally:

View file

@ -1,6 +1,7 @@
# youtube-dl # youtube-dl
> Download videos from YouTube and other websites. > Download videos from YouTube and other websites.
> Homepage: <http://rg3.github.io/youtube-dl/>.
- Download a video or playlist: - Download a video or playlist: