Forked from alexxxdev/gist:1dd024cadea091ca64154f9616d5739a
Created
April 20, 2021 06:17
-
-
Save hjzhang312/26c8b46d45289e1a4be8e741ed916bb9 to your computer and use it in GitHub Desktop.
remote: fatal: pack exceeds maximum allowed size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Adjust the following variables as necessary | |
| REMOTE=origin | |
| BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
| BATCH_SIZE=500 | |
| # check if the branch exists on the remote | |
| if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
| # if so, only push the commits that are not on the remote already | |
| range=$REMOTE/$BRANCH..HEAD | |
| else | |
| # else push all the commits | |
| range=HEAD | |
| fi | |
| # count the number of commits to push | |
| n=$(git log --first-parent --format=format:x $range | wc -l) | |
| # push each batch | |
| for i in $(seq $n -$BATCH_SIZE 1); do | |
| # get the hash of the commit to push | |
| h=$(git log --first-parent --reverse --format=format:%H --skip $i -n1) | |
| echo "Pushing $h..." | |
| git push $REMOTE $h:refs/heads/$BRANCH | |
| done | |
| # push the final partial batch | |
| git push $REMOTE HEAD:refs/heads/$BRANCH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment