From 73dd52440cd09062506f7bdbecfb7ede2b3a7e25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Yi=C4=9Fit=20BALABAN?= Date: Mon, 18 Apr 2022 12:24:16 +0300 Subject: [PATCH] Commit Obsidian notes in a-blink-of-an-eye --- fast_commit | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 fast_commit diff --git a/fast_commit b/fast_commit new file mode 100755 index 0000000..8accdfd --- /dev/null +++ b/fast_commit @@ -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