Skip to content

Commit 48888f3

Browse files
committed
update readme
1 parent d08b486 commit 48888f3

File tree

2 files changed

+37
-19
lines changed

2 files changed

+37
-19
lines changed

Diff for: README.md

+1-19
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,10 @@
11
# GeneralUpdate.Tools
22

3-
![](https://img.shields.io/github/license/JusterZhu/GeneralUpdate?color=blue)
4-
5-
6-
![](imgs/GeneralUpdate_h.png)
7-
8-
Generalupdate.tool is a subsidiary project of GeneralUpdate, based on. NET 8 WPF writing. Helps you generate differential patch packs and OSS version profiles. Everyone is welcome to submit issues and PR.
3+
Generalupdate.tool is a subsidiary project of GeneralUpdate, Helps you generate differential patch packs . Everyone is welcome to submit issues and PR.
94

105
| function | Supported or not | note |
116
| -------------------------------- | ---------------- | ------------------------------------------------------------ |
127
| Version file template generation | yes | This file is used for OSS functions and configuration of file templates that update version information. |
138
| Upload the update package file | yes | Click the build button to upload the update package to the file server by default and insert a version information record. |
149
| Build the update package | yes | Generate a differential patch update package. |
1510

16-
17-
18-
## Open source address
19-
20-
- https://github.com/GeneralLibrary/GeneralUpdate.Tools
21-
- https://gitee.com/GeneralLibrary/GeneralUpdate.Tools
22-
23-
24-
25-
## The parent project
26-
27-
- https://gitee.com/GeneralLibrary/GeneralUpdate.Tools
28-
- https://github.com/GeneralLibrary/GeneralUpdate

Diff for: git_push.bat

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
@echo off
2+
3+
git remote -v
4+
5+
set /p commitmessage=Git commit message:
6+
7+
git add .
8+
9+
git commit -m "%commitMessage%"
10+
11+
echo Pushing to default remote repository...
12+
git push
13+
if %errorlevel% neq 0 (
14+
echo Failed to push to default remote repository.
15+
pause
16+
exit /b %errorlevel%
17+
)
18+
19+
echo Pushing to upstream remote on 'main' branch...
20+
git push upstream main
21+
if %errorlevel% neq 0 (
22+
echo Failed to push to upstream remote on 'main' branch.
23+
pause
24+
exit /b %errorlevel%
25+
)
26+
27+
echo Pushing to 'upstream_gitcode' remote on 'main' branch...
28+
git push upstream_gitcode main
29+
if %errorlevel% neq 0 (
30+
echo Failed to push to 'upstream_gitcode' remote on 'main' branch.
31+
pause
32+
exit /b %errorlevel%
33+
)
34+
35+
echo All pushes completed successfully.
36+
pause

0 commit comments

Comments
 (0)