Files
lcbp3/2git.ps1
admin eeff27a511
Some checks failed
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled
Backup: docs: update README | 2025-12-06 15:21:14
2025-12-06 15:24:06 +07:00

15 lines
315 B
PowerShell

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