Commit Obsidian notes in a-blink-of-an-eye

This commit is contained in:
Ferit Yiğit BALABAN 2022-04-18 12:24:16 +03:00
parent 5f0305b267
commit 73dd52440c

10
fast_commit Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
cd $HOME/notes
git add .
git add .gitignore
git add *
git status
dt=$(date +"%d/%m/%y-%H.%M.%S")
git commit -m "Auto $dt"
git push
exit 0