Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-09 00:20:24 +00:00
parent 3be72c1548
commit 388ec4ec4c
73 changed files with 294 additions and 96 deletions

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# settings
> Get information about the Android OS.
> More information: <https://adbinstaller.com/commands/adb-shell-settings-5b670d5ee7958178a2955536>.
> More information: <https://web.archive.org/web/20240525010124/https://adbinstaller.com/commands/adb-shell-settings-5b670d5ee7958178a2955536>.
- List the settings in the `global` namespace:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> Show information about the screen of an Android device.
> This command can only be used through `adb shell`.
> More information: <https://adbinstaller.com/commands/adb-shell-wm-5b672b17e7958178a2955538>.
> More information: <https://web.archive.org/web/20240420064706/https://adbinstaller.com/commands/adb-shell-wm-5b672b17e7958178a2955538>.
- Display the physical size of an Android device's screen:

41
tldr/b2 Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# b2
> Access all features of Backblaze B2 Cloud Storage easily.
> More information: <https://www.backblaze.com/docs/cloud-storage-command-line-tools>.
- Access your account:
`b2 authorize_account {{key_id}}`
- List the existing buckets in your account:
`b2 list_buckets`
- Create a bucket, provide the bucket name, and access type (e.g. allPublic or allPrivate):
`b2 create_bucket {{bucket_name}} {{allPublic|allPrivate}}`
- Upload a file. Choose a file, bucket, and a folder:
`b2 upload_file {{bucket_name}} {{path/to/file}} {{folder_name}}`
- Upload a source directory to a Backblaze B2 bucket destination:
`b2 sync {{path/to/source_file}} {{bucket_name}}`
- Copy a file from one bucket to another bucket:
`b2 copy-file-by-id {{path/to/source_file_id}} {{destination_bucket_name}} {{path/to/b2_file}}`
- Show the files in your bucket:
`b2 ls {{bucket_name}}`
- Remove a "folder" or a set of files matching a pattern:
`b2 rm {{path/to/folder|pattern}}`

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# Chezmoi
# chezmoi
> A multi-machine dotfile manager, written in Go.
> See also: `stow`, `tuckr`, `vcsh`, `homeshick`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# consul-kv
# consul kv
> Distributed key-value store with health checking and service discovery.
> More information: <https://learn.hashicorp.com/consul/getting-started/kv>.

View File

@@ -21,7 +21,7 @@ source: https://github.com/tldr-pages/tldr.git
`crane --insecure {{subcommand}}`
- Specify the platform in the form os/arch{{/variant}}{{:osversion}} (e.g. linux/amd64). (default all):
- Specify the platform in the form `os/arch/variant:osversion` (e.g. `linux/amd64`). (default all):
`crane --platform {{platform}} {{subcommand}}`

View File

@@ -12,7 +12,7 @@ source: https://github.com/tldr-pages/tldr.git
`crane index filter`
- Specify the platform(s) to keep from base in the form os/arch{{/variant}}{{:osversion}}{{,<platform>}}:
- Specify the platform(s) to keep from base in the form `os/arch/variant:osversion,platform`:
`crane index filter --platform {{platform1 platform2 ...}}`

View File

@@ -21,7 +21,7 @@ source: https://github.com/tldr-pages/tldr.git
`crane mutate {{[-o|--output]}} {{path/to/tarball}}`
- Repository in the form os/arch{{/variant}}{{:osversion}}{{,<platform>}} to push mutated image:
- Repository in the form `os/arch/variant:osversion,platform` to push mutated image:
`crane mutate --set-platform {{platform_name}}`

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# cs complete dep
# cs complete-dep
> Search for libraries without doing it directly on the web.
> More information: <https://get-coursier.io/docs/cli-complete>.

33
tldr/elasticsearch-node Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# elasticsearch-node
> Manage low-level Elasticsearch node operations such as shutdown, repurpose, or viewing info.
> More information: <https://www.elastic.co/docs/reference/elasticsearch/command-line-tools/node-tool>.
- Display information about the current node:
`elasticsearch-node info`
- Prepare the node for a full cluster restart (e.g., after upgrading):
`elasticsearch-node unsafe-bootstrap`
- Repurpose a node for a different role (e.g., from master to data node):
`elasticsearch-node repurpose`
- List the roles assigned to the node:
`elasticsearch-node roles`
- Show the installed JVM version, Elasticsearch home path, and other diagnostic information:
`elasticsearch-node diagnostics`
- Display help:
`elasticsearch-node {{[-h|--help]}}`

29
tldr/elasticsearch-users Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# elasticsearch-users
> Manage native realm users in Elasticsearch, including creating, updating, and deleting users.
> More information: <https://www.elastic.co/guide/en/elasticsearch/reference/current/users-command.html>.
- Add a new user interactively (prompts for password):
`elasticsearch-users useradd {{username}}`
- Add a new user and specify roles:
`elasticsearch-users useradd {{username}} -r {{role1,role2}}`
- Change the password for an existing user:
`elasticsearch-users passwd {{username}}`
- Delete a user:
`elasticsearch-users userdel {{username}}`
- List all users in the native realm:
`elasticsearch-users list`

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# Gammastep
# gammastep
> Adjust the screen's color temperature according to the time of day.
> More information: <https://gitlab.com/chinstrap/gammastep>.

View File

@@ -23,7 +23,7 @@ source: https://github.com/tldr-pages/tldr.git
`gcrane --insecure {{subcommand}}`
- Specify the platform in the form os/arch{{/variant}}{{:osversion}} (e.g. linux/amd64). (default all):
- Specify the platform in the form `os/arch/variant:osversion` (e.g. `linux/amd64`). (default all):
`gcrane --platform {{platform}} {{subcommand}}`

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# git-grep
# git grep
> Find strings inside files anywhere in a repository's history.
> Accepts a lot of the same flags as regular `grep`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# git-imerge
# git imerge
> 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.
@@ -31,4 +31,4 @@ source: https://github.com/tldr-pages/tldr.git
- Abort imerge operation, and return to the previous branch:
`git-imerge remove && git checkout {{previous_branch}}`
`git imerge remove && git checkout {{previous_branch}}`

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# git-maintenance
# git maintenance
> Run tasks to optimize Git repository data.
> More information: <https://git-scm.com/docs/git-maintenance>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# IPython
# ipython
> A Python shell with automatic history, dynamic object introspection, easier configuration, command completion, access to the system shell and more.
> More information: <https://ipython.readthedocs.io>.

21
tldr/kodi-send Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# kodi-send
> Send actions to Kodi.
> More information: <https://kodi.wiki/view/List_of_built-in_functions>.
- Quit Kodi:
`kodi-send {{[-a|--action]}} Quit`
- Reboot the system:
`kodi-send {{[-a|--action]}} Reboot`
- Send an action to a remote host:
`kodi-send --host {{192.168.0.1}} --port {{9777}} {{[-a|--action]}} {{Quit}}`

View File

@@ -24,7 +24,7 @@ source: https://github.com/tldr-pages/tldr.git
`sudo aide {{[-u|--update]}}`
- Define a config file to override the default {{./aide.conf}}:
- Define a config file to override the default `./aide.conf`:
`sudo aide {{[-c|--config]}} {{path/to/config_file}}`

View File

@@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git
- Verify fingerprints for a specific user:
`fprint-verify {{username}}`
`fprintd-verify {{username}}`
- Verify a specific fingerprint for a specific user:
@@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git
- Fail the process if a fingerprint doesn't match with ones stored in the database for the current user:
`fprint-verify --g-fatal-warnings`
`fprintd-verify --g-fatal-warnings`
- Display help:

View File

@@ -22,11 +22,11 @@ source: https://github.com/tldr-pages/tldr.git
- Disable a specific extension:
`gnome-extension disable "{{extension_id}}"`
`gnome-extensions disable "{{extension_id}}"`
- Uninstall a specific extension:
`gnome-extension uninstall "{{extension_id}}"`
`gnome-extensions uninstall "{{extension_id}}"`
- Display help for a specific subcommand (like `list`):

View File

@@ -27,3 +27,7 @@ source: https://github.com/tldr-pages/tldr.git
- Dump info in a readable form:
`lspci -vm`
- Show PCI vendor and device codes alongside its name:
`lspci -nn`

View File

@@ -8,6 +8,10 @@ source: https://github.com/tldr-pages/tldr.git
> Clone a container.
> More information: <https://pve.proxmox.com/pve-docs/pct.1.html>.
- Clone a container:
`pct clone {{template_id}} {{copy_id}}`
- Clone a container with a custom name:
`pct clone {{template_id}} {{copy_id}} --hostname {{host_name}}`

21
tldr/linux/pct-set Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# pct set
> Set container options.
> More information: <https://pve.proxmox.com/pve-docs/pct.1.html>.
- Set container to start automatically on boot:
`pct set {{100}} --onboot`
- Set a container to have a static IP:
`pct set {{100}} --net0 name=eth0,bridge=vmbr0,ip={{10.0.0.100/24}},gw={{10.0.0.1}}`
- Set container memory limit:
`pct set {{100}} --memory {{8192}}`

View File

@@ -5,38 +5,12 @@ source: https://github.com/tldr-pages/tldr.git
---
# snap
> Manage the "snap" self-contained software packages.
> Similar to what `apt` is for `.deb`.
> More information: <https://manned.org/snap>.
> `snap` can refer to multiple commands with the same name.
- Search for a package:
- View documentation for the packaging solution:
`snap find {{query}}`
`tldr snap.pkg`
- Install a package:
- View documentation for the European Space Agency Earth observation data processing tool:
`snap install {{package}}`
- Update a package:
`snap refresh {{package}}`
- Update a package to another channel (track, risk, or branch):
`snap refresh {{package}} --channel={{channel}}`
- Update all packages:
`snap refresh`
- Display basic information about installed snap software:
`snap list`
- Uninstall a package:
`snap remove {{package}}`
- Check for recent snap changes in the system:
`snap changes`
`tldr snap.esa`

17
tldr/linux/snap.esa Normal file
View File

@@ -0,0 +1,17 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# snap
> Sentinel Application Platform (SNAP) for processing satellite data from the European Space Agency (ESA).
> More information: <https://step.esa.int/main/download/snap-download/>.
- Display all updates:
`snap --nosplash --nogui --modules --list --refresh`
- Display help:
`snap --help`

42
tldr/linux/snap.pkg Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# snap
> Manage the "snap" self-contained software packages.
> Similar to what `apt` is for `.deb`.
> More information: <https://manned.org/snap>.
- Search for a package:
`snap find {{query}}`
- Install a package:
`snap install {{package}}`
- Update a package:
`snap refresh {{package}}`
- Update a package to another channel (track, risk, or branch):
`snap refresh {{package}} --channel={{channel}}`
- Update all packages:
`snap refresh`
- Display basic information about installed snap software:
`snap list`
- Uninstall a package:
`snap remove {{package}}`
- Check for recent snap changes in the system:
`snap changes`

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, osx]
source: https://github.com/tldr-pages/tldr.git
---
# AutoRaise
# autoraise
> Automatically raise and/or focus a window when hovering over it with the mouse.
> More information: <https://github.com/sbmpost/AutoRaise>.

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> A service that handles all Bluetooth network connections.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/bnepd.8.html>.
> More information: <https://www.manpagez.com/man/8/bnepd/>.
- Start the daemon:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> Event Monitor service that accepts events from various services, runs them through a simple rules engine, and takes action.
> The actions can run commands, send email, or SMS messages.
> More information: <https://keith.github.io/xcode-man-pages/emond.8.html>.
> More information: <https://manpagez.com/man/8/emond/>.
- Start the daemon:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# shuf
> Generate random permutations.
> More information: <https://keith.github.io/xcode-man-pages/shuf.1.html>.
> More information: <https://manpagez.com/man/1/shuf/>.
- Randomize the order of lines in a file and output the result:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> Relays commands between Web Inspector and remote targets like WKWebView.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/webinspectord.8.html>.
> More information: <https://www.manpagez.com/man/8/webinspectord/>.
- Start the daemon:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> Assists AirPort in connecting to a network using Wireless Protected Setup.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/wps.8.html>.
> More information: <https://www.manpagez.com/man/8/wps/>.
- Start the daemon:

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> USB WWAN device configuration daemon.
> It should not be invoked manually.
> More information: <https://keith.github.io/xcode-man-pages/wwand.8.html>.
> More information: <https://web.archive.org/web/20230331164459/https://keith.github.io/xcode-man-pages/wwand.8.html>.
- Start the daemon:

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# yaa
> Create and manipulate YAA archives.
> More information: <https://keith.github.io/xcode-man-pages/yaa.1.html>.
> More information: <https://www.manpagez.com/man/1/yaa/>.
- Create an archive from a directory:

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# PHP-CS-Fixer
# php-cs-fixer
> Automatic coding style fixer for PHP.
> More information: <https://github.com/FriendsOfPHP/PHP-CS-Fixer>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# Pint
# pint
> An opinionated PHP code style fixer based on PHP-CS-Fixer.
> More information: <https://laravel.com/docs/pint>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pyATS
# pyats
> A vendor agnostic test automation framework by Cisco Systems, used for network and systems testing.
> More information: <https://developer.cisco.com/pyats/>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# qownnotes
# QOwnNotes
> Markdown note-taking application.
> Optionally integrates with the note-taking applications of Nextcloud and ownCloud.

View File

@@ -27,3 +27,15 @@ source: https://github.com/tldr-pages/tldr.git
- Run an interactive shell on an emulator:
`sfdk emulator exec {{emulator}}`
- Execute a command on an emulator:
`sfdk emulator exec {{emulator}} {{command}}`
- Set a property:
`sfdk emulator set {{name}} {{property}}={{value}}`
- Show emulator properties:
`sfdk emulator show {{name}}`

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# Stormlock
# stormlock
> Centralized locking system.
> More information: <https://github.com/tmccombs/stormlock>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-clonevm
# VBoxManage clonevm
> Create a clone of an existing virtual machine (VM).
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-clonevm>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-cloud
# VBoxManage cloud
> VirtualBox command-line interface for managing cloud instances and images.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-cloud>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-controlvm
# VBoxManage controlvm
> Change the state and the settings of a currently running virtual machine.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-controlvm>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-createvm
# VBoxManage createvm
> Create a new virtual machine.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-createvm>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-export
# VBoxManage export
> Export virtual machines to a virtual appliance (ISO) or a cloud service.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-export>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-extpack
# VBoxManage extpack
> Manage extension packs for Oracle VirtualBox.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-extpack>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-import
# VBoxManage import
> Import a previously exported virtual machine (VM).
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-import>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-list
# VBoxManage list
> List information about the Oracle VM VirtualBox software and associated service.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-list>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage movevm
# VBoxManage movevm
> Move a virtual machine (VM) to a new location on the host system.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-movevm>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-registervm
# VBoxManage registervm
> Register a virtual machine (VM).
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-registervm>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-showvminfo
# VBoxManage showvminfo
> Show information about registered virtual machine.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-showvminfo>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-startvm
# VBoxManage startvm
> Start a virtual machine.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-startvm>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vboxmanage-unregistervm
# VBoxManage unregistervm
> Unregister a virtual machine (VM).
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-unregistervm>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# virsh-connect
# virsh connect
> Connect to a virtual machine hypervisor.
> See also: `virsh`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# virsh-domblklist
# virsh domblklist
> List information about block devices associated with a virtual machine.
> See also: `virsh`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# virsh-help
# virsh help
> Display information about `virsh` commands or command groups.
> See also: `virsh`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# virsh-list
# virsh list
> List the ID, name, and state of virtual machines.
> See also: `virsh`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# choco-push
# choco push
> Push a compiled NuGet package (`nupkg`) to a package feed.
> More information: <https://docs.chocolatey.org/en-us/create/commands/push>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-alt
# yadm alt
> Create symbolic links and process templates for any managed files.
> Learn more about templates: <https://yadm.io/docs/templates>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-bootstrap
# yadm bootstrap
> Execute Yadm's bootstrap file.
> This file should be created in `$HOME/.config/yadm/bootstrap`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-clone
# yadm clone
> Works just like `git clone`. In addition you can pass extra flags to configure your repository.
> If there is a bootstrap file in the repository, you will be prompted to execute it.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-config
# yadm config
> Pass options to `yadm`'s config file. Change the `.config` of the repository managed by `yadm`.
> More information: <https://github.com/TheLocehiliosan/yadm/blob/master/yadm.md#configuration>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-decrypt
# yadm decrypt
> Decrypt files that were encrypted by `yadm`.
> When activating this command you will be prompted for a password.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-encrypt
# yadm encrypt
> Encrypt files listed in the designated encrypt file.
> After the files are encrypted they will be save in the designated archive folder.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-enter
# yadm enter
> Run a sub-shell with all Git variables set. This sub-shell can be used to easily interact with the local `yadm` repository using Git commands.
> This could be useful if you are using a tool which uses Git directly.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-gitconfig
# yadm gitconfig
> Pass options to `git config`. Change the `.gitconfig` of the repository managed by `yadm`.
> See also: `git config`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-init
# yadm init
> Initialize a new, empty repository for tracking dotfiles.
> The repository is stored in `$HOME/.local/share/yadm/repo.git`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-introspect
# yadm introspect
> Look at data that is managed by `yadm`.
> The purpose of introspection is to support command line completion.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-list
# yadm list
> Print a list of files managed by `yadm`.
> More information: <https://github.com/TheLocehiliosan/yadm/blob/master/yadm.md#commands>.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-perms
# yadm perms
> Update permissions.
> It is usually unnecessary to run this command, as `yadm` automatically processes permissions by default. This automatic behavior can be disabled by setting the configuration `yadm.auto-perms` to `"false"`.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-transcrypt
# yadm transcrypt
> If `transcrypt` is installed, this command allows you to pass options directly to `transcrypt`.
> With the environment configured to use the yadm repository.

View File

@@ -3,7 +3,7 @@ syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# yadm-upgrade
# yadm upgrade
> Upgrade `yadm` to the latest version.
> Upgrading will attempt to de-initialize and re-initialize your submodules.