diff options
author | kaotisk <kaotisk@arching-kaos.com> | 2021-05-25 08:31:30 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.com> | 2021-05-25 08:31:30 +0300 |
commit | edea2a5a3e1aeb7088a4dbc340b10e2838fc6662 (patch) | |
tree | 9d19c38ce41c16031e02e2113c007a9d3570eb4a | |
parent | 34d7238819acd6d2e23fea321742198d01ecf9f8 (diff) | |
download | 01-NEWS-edea2a5a3e1aeb7088a4dbc340b10e2838fc6662.tar.gz 01-NEWS-edea2a5a3e1aeb7088a4dbc340b10e2838fc6662.tar.bz2 01-NEWS-edea2a5a3e1aeb7088a4dbc340b10e2838fc6662.zip |
[NEWS] Created script to quickly add news to the repo
-rw-r--r-- | 20210525_082840 | 5 | ||||
-rw-r--r-- | bin/add-new.sh | 5 |
2 files changed, 10 insertions, 0 deletions
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)" |