|
23 | 23 | git clone --filter=blob:none --filter=tree:0 --branch master --single-branch ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} repo |
24 | 24 | cd repo |
25 | 25 | git remote add --no-tags --fetch --track master upstream https://github.com/${GITHUB_REPOSITORY} |
26 | | - git merge upstream/master |
27 | | - git push upstream master --progress |
28 | | - git push origin master --progress |
| 26 | + git diff --stat master upstream/master |
| 27 | + git pull -v --rebase upstream master |
| 28 | + git push upstream master -v --progress |
| 29 | + git push origin master -v --progress |
29 | 30 | cd ../ |
30 | 31 | rm -rf repo |
31 | 32 |
|
|
34 | 35 | git clone --filter=blob:none --filter=tree:0 --branch v3 --single-branch ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} repo |
35 | 36 | cd repo |
36 | 37 | git remote add --no-tags --fetch --track v3 upstream https://github.com/${GITHUB_REPOSITORY} |
37 | | - git merge upstream/v3 |
38 | | - git push upstream v3 --progress |
39 | | - git push origin v3 --progress |
| 38 | + git diff --stat v3 upstream/v3 |
| 39 | + git pull -v --rebase upstream v3 |
| 40 | + git push upstream v3 -v --progress |
| 41 | + git push origin v3 -v --progress |
40 | 42 | cd ../ |
41 | 43 | rm -rf repo |
42 | 44 |
|
|
45 | 47 | git clone --filter=blob:none --filter=tree:0 --branch v4 --single-branch ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} repo |
46 | 48 | cd repo |
47 | 49 | git remote add --no-tags --fetch --track v4 upstream https://github.com/${GITHUB_REPOSITORY} |
48 | | - git merge upstream/v4 |
49 | | - git push upstream v4 --progress |
50 | | - git push origin v4 --progress |
| 50 | + git diff --stat v4 upstream/v4 |
| 51 | + git pull -v --rebase upstream v4 |
| 52 | + git push upstream v4 -v --progress |
| 53 | + git push origin v4 -v --progress |
51 | 54 | cd ../ |
52 | 55 | rm -rf repo |
0 commit comments