add backup script

This commit is contained in:
quenousimporte 2024-07-17 09:49:57 +02:00
parent 8ebd9c98cf
commit fd3cb6c75b
2 changed files with 14 additions and 0 deletions

2
delta2md/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
notes/*
result/*

12
delta2md/backup.bat Normal file
View File

@ -0,0 +1,12 @@
@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