diff --git a/delta2md/.gitignore b/delta2md/.gitignore new file mode 100644 index 0000000..7b219b6 --- /dev/null +++ b/delta2md/.gitignore @@ -0,0 +1,2 @@ +notes/* +result/* \ No newline at end of file diff --git a/delta2md/backup.bat b/delta2md/backup.bat new file mode 100644 index 0000000..a1bde2f --- /dev/null +++ b/delta2md/backup.bat @@ -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