notetools/delta2md/backup.bat

13 lines
178 B
Batchfile
Raw Normal View History

2024-07-17 09:49:57 +02:00
@echo off
set notespath=
node delta2md
copy result\* %notespath%
pushd %notespath%
git status
pause
git add .
git commit -m "backup cryptee"
git push
popd
pause