-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommit_v1.0.1.bat
More file actions
69 lines (58 loc) · 1.88 KB
/
commit_v1.0.1.bat
File metadata and controls
69 lines (58 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@echo off
REM ============================================================
REM VictorVideo v1.0.1 - Commit and Tag Script
REM ============================================================
REM This script commits all changes and creates a release tag
REM ============================================================
echo.
echo ============================================================
echo VictorVideo v1.0.1 - Commit & Tag Script
echo ============================================================
echo.
cd /d C:\Users\vhuang01\PycharmProjects\Video_Record
REM Check if git is initialized
if not exist .git (
echo Initializing git repository...
git init
echo Git repository initialized.
echo.
)
REM Show current status
echo Current Git Status:
echo.
git status
echo.
REM Add all changes
echo Adding all changes to staging area...
git add -A
echo Changes added.
echo.
REM Commit with descriptive message
echo Committing with message...
git commit -m "Release v1.0.1: Fixed audio/video sync, volume boost, EXE naming, and added All of Above audio feature"
echo Changes committed.
echo.
REM Create annotated tag
echo Creating release tag v1.0.1...
git tag -a v1.0.1 -m "VictorVideo v1.0.1 Release%nDate: April 19, 2026%nFeatures:%n- Audio/Video Synchronization Fix%n- 2x Volume Boost with Normalization%n- All of Above Audio Source%n- Fresh Button for Schedule%n- EXE Naming with Version%n- Enhanced Logging and Error Handling"
echo Tag created: v1.0.1
echo.
REM Show tag info
echo.
echo Tag Information:
git show v1.0.1
echo.
REM Show recent commits
echo.
echo Recent Commits:
git log --oneline -10
echo.
echo ============================================================
echo SUCCESS! v1.0.1 tagged and ready.
echo ============================================================
echo.
echo Next steps:
echo 1. Push to remote: git push origin main
echo 2. Push tags: git push origin v1.0.1
echo.
pause