Skip to content

Commit ac60b5f

Browse files
Include + in the refspec in sample commands for split push (2 GB limit) (#34564)
Co-authored-by: Alex Nguyen <[email protected]>
1 parent 667abc4 commit ac60b5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/get-started/using-git/troubleshooting-the-2-gb-push-limit.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can avoid hitting the limit by breaking your push into smaller parts, each o
3434
1. Push each of these commits one at a time to your {% data variables.product.prodname_dotcom %} hosted repository.
3535

3636
```shell
37-
git push REMOTE-NAME <YOUR_COMMIT_SHA_NUMBER>:refs/heads/BRANCH-NAME
37+
git push REMOTE-NAME +<YOUR_COMMIT_SHA_NUMBER>:refs/heads/BRANCH-NAME
3838
```
3939

4040
If you see the message `remote: fatal: pack exceeds maximum allowed size`, reduce the step size in step 2 and try again.
@@ -52,7 +52,7 @@ Once you're familiar with the procedure, you can automate steps 2 to 4 to simpli
5252

5353
```shell
5454
step_commits=$(git log --oneline --reverse refs/heads/BRANCH-NAME | awk 'NR % 1000 == 0')
55-
echo "$step_commits" | while read commit message; do git push REMOTE-NAME $commit:refs/heads/BRANCH-NAME; done
55+
echo "$step_commits" | while read commit message; do git push REMOTE-NAME +$commit:refs/heads/BRANCH-NAME; done
5656
```
5757

5858
## Starting from scratch

0 commit comments

Comments
 (0)