Spaces:
Sleeping
Sleeping
Delete dist.bat
Browse files
dist.bat
DELETED
@@ -1,27 +0,0 @@
|
|
1 |
-
@echo off
|
2 |
-
cd "%~dp0"
|
3 |
-
|
4 |
-
call git lfs update --force
|
5 |
-
call git lfs install
|
6 |
-
call git fetch
|
7 |
-
call git checkout
|
8 |
-
call git add --all .
|
9 |
-
call git commit -m "commit"
|
10 |
-
( call git rebase ) || (
|
11 |
-
call :conflicts
|
12 |
-
)
|
13 |
-
( call git push ) && (
|
14 |
-
echo Finished.
|
15 |
-
pause
|
16 |
-
exit /b 0
|
17 |
-
) || (
|
18 |
-
echo Error: Failed to push!
|
19 |
-
pause
|
20 |
-
exit /b 1
|
21 |
-
)
|
22 |
-
|
23 |
-
:conflicts
|
24 |
-
echo Please fix the conflicts, then, press any key to continue
|
25 |
-
pause
|
26 |
-
call git add --all .
|
27 |
-
call git rebase --continue || call :conflicts
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|