From edea2a5a3e1aeb7088a4dbc340b10e2838fc6662 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Tue, 25 May 2021 08:31:30 +0300 Subject: [NEWS] Created script to quickly add news to the repo --- 20210525_082840 | 5 +++++ bin/add-new.sh | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 20210525_082840 create mode 100644 bin/add-new.sh diff --git a/20210525_082840 b/20210525_082840 new file mode 100644 index 0000000..61dfd16 --- /dev/null +++ b/20210525_082840 @@ -0,0 +1,5 @@ +[NEWS] Created script to quickly add news to the repo + +I only use timestamp for file name. I open an editor for that and from there, the first line is the title as happens most of the times. + +I use the first line as a message to the commit which is happening after the file is saved. diff --git a/bin/add-new.sh b/bin/add-new.sh new file mode 100644 index 0000000..2f7da1f --- /dev/null +++ b/bin/add-new.sh @@ -0,0 +1,5 @@ +#!/bin/bash +export NEWS_FILE=$(date +%Y%m%d_%H%M%S)" +vi $NEWS_FILE +git add $NEWS_FILE +git commit -m "$(head -n 1 $NEWS_FILE)" -- cgit v1.2.3