From a8768ee92e30a17a40eb63c8720fe244c6b49ffc Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Thu, 28 Aug 2025 12:18:53 +0000 Subject: [PATCH] git-reflog: add Dutch translation (#17848) --- pages.nl/common/git-reflog.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages.nl/common/git-reflog.md diff --git a/pages.nl/common/git-reflog.md b/pages.nl/common/git-reflog.md new file mode 100644 index 0000000000..7243336831 --- /dev/null +++ b/pages.nl/common/git-reflog.md @@ -0,0 +1,16 @@ +# git reflog + +> Toon een log met veranderingen in lokale referenties zoals HEAD, branches en tags. +> Meer informatie: . + +- Toon de reflog voor HEAD: + +`git reflog` + +- Toon de reflog voor een bepaalde branch: + +`git reflog {{branch_naam}}` + +- Toon alleen de laatste 5 vermeldingen in de reflog: + +`git reflog {{[-n|--max-count]}} 5`