-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_repo.bat
49 lines (39 loc) · 1.4 KB
/
update_repo.bat
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
@echo off
:: Cool Output Messages
echo ==============================
echo Welcome to the Git Automation Script!
echo ==============================
echo This script will help you:
echo 1. Stage all changes (excluding this .bat file)
echo 2. Commit with a message of your choice
echo 3. Push the commit to the branch you specify
echo ==============================
:: Asking for the branch name
set /p branch=Enter the branch you want to push to (default is 'main'):
:: Set default branch to 'main' if no input is given
if "%branch%"=="" set branch=main
:: Asking for the commit message
set /p commitMsg=Enter your commit message:
:: Cool message before starting the Git commands
echo ==============================
echo Staging files (excluding the .bat file)...
echo ==============================
:: Staging all files except this .bat file
git add .
:: Cool message before committing
echo ==============================
echo Committing with message: "%commitMsg%"
echo ==============================
:: Committing the changes
git commit -m "%commitMsg%"
:: Cool message before pushing
echo ==============================
echo Pushing to branch: %branch%
echo ==============================
:: Pushing to the specified branch
git push -u origin %branch%
:: Completion message
echo ==============================
echo All done! Your changes have been pushed to the repository.
echo ==============================
pause