2019-02-13 14:50:02 -05:00
|
|
|
git config --global core.autocrlf false
|
|
|
|
|
|
|
|
REM Get branch to check asm into
|
2019-02-28 21:14:42 -05:00
|
|
|
git checkout %APPVEYOR_REPO_COMMIT% 2>&1
|
2019-02-15 15:02:11 -05:00
|
|
|
git checkout -b asm/%APPVEYOR_REPO_COMMIT%/appveyor-%APPVEYOR_JOB_ID% 2>&1
|
2019-02-13 14:50:02 -05:00
|
|
|
|
|
|
|
REM Check asm into the branch
|
2019-02-12 21:14:29 -05:00
|
|
|
git add "asm/*"
|
|
|
|
git status
|
2019-02-13 14:50:02 -05:00
|
|
|
git diff-index --cached --quiet --exit-code HEAD || git commit -m "[skip ci] Update ASM for %ASM_FOLDER%"
|
2019-02-15 15:02:11 -05:00
|
|
|
git push -u origin HEAD 2>&1
|