From 17e64b5452a61c43c91f4154bde9b933450c293e Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:40:52 +0200 Subject: [PATCH] Fix numbered list in "Troubleshooting the 2 GB push limit" (#43365) --- .../using-git/troubleshooting-the-2-gb-push-limit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/using-git/troubleshooting-the-2-gb-push-limit.md b/content/get-started/using-git/troubleshooting-the-2-gb-push-limit.md index 367cbf2955..be0bc566b7 100644 --- a/content/get-started/using-git/troubleshooting-the-2-gb-push-limit.md +++ b/content/get-started/using-git/troubleshooting-the-2-gb-push-limit.md @@ -29,7 +29,7 @@ You can avoid hitting the limit by breaking your push into smaller parts, each o git log --oneline --reverse refs/heads/BRANCH-NAME | awk 'NR % 1000 == 0' ``` - This command reveals every 1000th commit. You can increase or decrease the number to adjust the step size. + This command reveals every 1000th commit. You can increase or decrease the number to adjust the step size. 1. Push each of these commits one at a time to your {% data variables.product.prodname_dotcom %} hosted repository.