From 2a42e87c5bf186187fa28883c65f42dfdec4ce3b Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Wed, 13 Aug 2025 00:20:58 +0000 Subject: [PATCH] Update cheatsheets --- tldr/hg | 2 +- tldr/hg-add | 2 +- tldr/hg-branch | 2 +- tldr/hg-clone | 2 +- tldr/hg-commit | 2 +- tldr/hg-init | 2 +- tldr/hg-log | 2 +- tldr/hg-pull | 2 +- tldr/hg-push | 2 +- tldr/hg-remove | 2 +- tldr/hg-root | 2 +- tldr/hg-serve | 2 +- tldr/hg-status | 2 +- tldr/hg-update | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/tldr/hg b/tldr/hg index 4fc8fad0..9d6f96ec 100644 --- a/tldr/hg +++ b/tldr/hg @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Mercurial - a distributed source control management system. > Some subcommands such as `commit` have their own usage documentation. -> More information: . +> More information: . - Execute a Mercurial command: diff --git a/tldr/hg-add b/tldr/hg-add index 347dd290..5fd30ab8 100644 --- a/tldr/hg-add +++ b/tldr/hg-add @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg add > Adds specified files to the staging area for the next commit in Mercurial. -> More information: . +> More information: . - Add files or directories to the staging area: diff --git a/tldr/hg-branch b/tldr/hg-branch index 8210a346..e787a136 100644 --- a/tldr/hg-branch +++ b/tldr/hg-branch @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg branch > Create or show a branch name. -> More information: . +> More information: . - Show the name of the currently active branch: diff --git a/tldr/hg-clone b/tldr/hg-clone index 7440a4e8..429f926a 100644 --- a/tldr/hg-clone +++ b/tldr/hg-clone @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg clone > Create a copy of an existing repository in a new directory. -> More information: . +> More information: . - Clone a repository to a specified directory: diff --git a/tldr/hg-commit b/tldr/hg-commit index 24c4a407..ac361af5 100644 --- a/tldr/hg-commit +++ b/tldr/hg-commit @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg commit > Commit all staged or specified files to the repository. -> More information: . +> More information: . - Commit staged files to the repository: diff --git a/tldr/hg-init b/tldr/hg-init index 66e8ae74..1948c1ec 100644 --- a/tldr/hg-init +++ b/tldr/hg-init @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg init > Create a new repository in the specified directory. -> More information: . +> More information: . - Initialize a new repository in the current directory: diff --git a/tldr/hg-log b/tldr/hg-log index 27d57307..007468b4 100644 --- a/tldr/hg-log +++ b/tldr/hg-log @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg log > Display the revision history of the repository. -> More information: . +> More information: . - Display the entire revision history of the repository: diff --git a/tldr/hg-pull b/tldr/hg-pull index 4f186703..e607aa20 100644 --- a/tldr/hg-pull +++ b/tldr/hg-pull @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg pull > Pull changes from a specified repository to the local repository. -> More information: . +> More information: . - Pull from the "default" source path: diff --git a/tldr/hg-push b/tldr/hg-push index 0a34d907..16178645 100644 --- a/tldr/hg-push +++ b/tldr/hg-push @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg push > Push changes from the local repository to a specified destination. -> More information: . +> More information: . - Push changes to the "default" remote path: diff --git a/tldr/hg-remove b/tldr/hg-remove index df45aeef..91b5c11f 100644 --- a/tldr/hg-remove +++ b/tldr/hg-remove @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg remove > Remove specified files from the staging area. -> More information: . +> More information: . - Remove files or directories from the staging area: diff --git a/tldr/hg-root b/tldr/hg-root index 2b902753..47bc2f9e 100644 --- a/tldr/hg-root +++ b/tldr/hg-root @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg root > Display the root location of a Hg repository. -> More information: . +> More information: . - Display the root location of the current repository: diff --git a/tldr/hg-serve b/tldr/hg-serve index fdee272e..0f81d23d 100644 --- a/tldr/hg-serve +++ b/tldr/hg-serve @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg serve > Start a standalone Mercurial web server for browsing repositories. -> More information: . +> More information: . - Start a web server instance: diff --git a/tldr/hg-status b/tldr/hg-status index 66fde3a9..4c1612a4 100644 --- a/tldr/hg-status +++ b/tldr/hg-status @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg status > Show files that have changed in the working directory. -> More information: . +> More information: . - Display the status of changed files: diff --git a/tldr/hg-update b/tldr/hg-update index 0d79f6e8..b7242bd8 100644 --- a/tldr/hg-update +++ b/tldr/hg-update @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # hg update > Update the working directory to a specified changeset. -> More information: . +> More information: . - Update to the tip of the current branch: