vat-software/scripts/git_push_cronjob.ps1
2023-03-28 11:30:59 +02:00

6 lines
153 B
PowerShell

Start-Transcript -OutputDirectory C:\cron\log
Set-Location C:\Share\URC_FILES
git add .
git commit -m "$((Get-Date).ToString())"
git push
Stop-Transcript