We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e2f12f commit 811dcdeCopy full SHA for 811dcde
git_push.bat
@@ -3,20 +3,23 @@ echo Pushing to default remote repository...
3
git push
4
if %errorlevel% neq 0 (
5
echo Failed to push to default remote repository.
6
+ pause
7
exit /b %errorlevel%
8
)
9
10
echo Pushing to upstream remote on 'main' branch...
11
git push upstream main
12
13
echo Failed to push to upstream remote on 'main' branch.
14
15
16
17
18
echo Pushing to 'upstream_gitcode' remote on 'main' branch...
19
git push upstream_gitcode main
20
21
echo Failed to push to 'upstream_gitcode' remote on 'main' branch.
22
23
24
25
0 commit comments