-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgpush.bat
More file actions
25 lines (20 loc) Β· 949 Bytes
/
gpush.bat
File metadata and controls
25 lines (20 loc) Β· 949 Bytes
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
:: Steps To Create The Simple Automation Workflow Below - Works Only For Windows VS Code Terminal:
:: 1. Create a file with extension `.bat` -> gpush.bat
:: 2. Copy the code below into the file/Add your own commands if you wish
:: 3. Open the Windows terminal on VS Code and run the command `.\gpush.bat` to execute the script - `gpush.bat` is our file name, feel free to customize
:: 4. Successfully Automated
:: -> Millionaire Vibes Inshallah! π
@echo off
echo Adding all files to Git...
git add .
echo Checking Git status...
git status
echo Committing changes...
git commit -m "Learning Web3 Security"
echo Pushing to remote repository...
git push
echo "" Millionaire Vibes Inshallah! Happy Development ""
echo "" Millionaire Vibes Inshallah! Happy Development ""
echo "" Millionaire Vibes Inshallah! Happy Development ""
echo "" Millionaire Vibes Inshallah! Happy Development ""
echo "" Millionaire Vibes Inshallah! Happy Development ""