13 lines
178 B
Batchfile
13 lines
178 B
Batchfile
|
@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
|