Backup: docs: update README | 2025-12-06 15:21:14

This commit is contained in:
admin
2025-12-06 15:21:14 +07:00
parent 381ffa44d7
commit 1123114f15
4 changed files with 131 additions and 34 deletions

14
2git.ps1 Normal file
View File

@@ -0,0 +1,14 @@
param([string]$Message = "Backup")
$Timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
$CommitMsg = "Backup: $Message | $Timestamp"
Write-Host "Backup: $CommitMsg" -ForegroundColor Cyan
git add .
git commit -m $CommitMsg
git push origin main
git push github main
Write-Host "Done!" -ForegroundColor Green
pause