From a08d1334d86a971c5de6fbcbf79a613f0ee9435c Mon Sep 17 00:00:00 2001 From: Tobias Fink Date: Fri, 19 Sep 2025 13:34:59 +0200 Subject: [PATCH 1/2] Corrected the explanation for git fetch --all --- content/cheat-sheet/_index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/cheat-sheet/_index.html b/content/cheat-sheet/_index.html index 9703b99adf..b9b0027453 100644 --- a/content/cheat-sheet/_index.html +++ b/content/cheat-sheet/_index.html @@ -732,7 +732,7 @@

Fetch changes and then merge them into your current branch:

git pull
-

Fetch all branches:

+

Fetch all remotes:

git fetch --all
From 3407864cadadd70dd9c2db429e16c5b8e238e5ed Mon Sep 17 00:00:00 2001 From: Tobias Fink Date: Fri, 19 Sep 2025 14:10:51 +0200 Subject: [PATCH 2/2] Removed git fetch --all since it's rarly used --- content/cheat-sheet/_index.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/content/cheat-sheet/_index.html b/content/cheat-sheet/_index.html index b9b0027453..44abec77e7 100644 --- a/content/cheat-sheet/_index.html +++ b/content/cheat-sheet/_index.html @@ -731,10 +731,6 @@

Fetch changes and then merge them into your current branch:

OR git pull -
-

Fetch all remotes:

- git fetch --all -