From 1dafedaa9adf2a36a95c6a9d83fd205574c663ee Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Mon, 24 Nov 2025 00:22:14 +0000 Subject: [PATCH] Update cheatsheets --- tldr/dolt | 30 +++++++++++++++++++++++++----- tldr/pip3 | 31 +++---------------------------- 2 files changed, 28 insertions(+), 33 deletions(-) diff --git a/tldr/dolt b/tldr/dolt index ef1860f8..84defb98 100644 --- a/tldr/dolt +++ b/tldr/dolt @@ -5,14 +5,34 @@ source: https://github.com/tldr-pages/tldr.git --- # dolt -> An SQL database that you can fork, clone, branch, merge, push and pull just like a Git repository. +> An SQL database that you can fork, clone, branch, merge, push, and pull just like a Git repository. > Some subcommands such as `commit` have their own usage documentation. > More information: . -- Execute a `dolt` subcommand: +- Initialize a new Dolt data repository: -`dolt {{subcommand}}` +`dolt init` -- List available subcommands: +- Show the current working tree status: -`dolt help` +`dolt status` + +- Add a remote Dolt repository: + +`dolt remote add {{repository_name}} {{url}}` + +- Stage changes to tables: + +`dolt add {{table_name}}` + +- Record staged changes to the repository: + +`dolt commit {{[-m|--message]}} "{{commit_message}}"` + +- Push local changes to a remote: + +`dolt push` + +- Pull changes from a remote: + +`dolt pull` diff --git a/tldr/pip3 b/tldr/pip3 index 5cf3081b..9f8f5238 100644 --- a/tldr/pip3 +++ b/tldr/pip3 @@ -5,33 +5,8 @@ source: https://github.com/tldr-pages/tldr.git --- # pip3 -> Python package manager. -> More information: . +> This command is an alias of `pip`. -- Install a package: +- View documentation for the original command: -`pip3 install {{package}}` - -- Install a specific version of a package: - -`pip3 install {{package}}=={{version}}` - -- Upgrade a package: - -`pip3 install {{[-U|--upgrade]}} {{package}}` - -- Uninstall a package: - -`pip3 uninstall {{package}}` - -- Save the list of installed packages to a file: - -`pip3 freeze > {{requirements.txt}}` - -- Install packages from a file: - -`pip3 install {{[-r|--requirement]}} {{requirements.txt}}` - -- Show installed package info: - -`pip3 show {{package}}` +`tldr pip`