diff --git a/system/.config/custom/aliases b/system/.config/custom/aliases index 5d7bea0..3befb37 100644 --- a/system/.config/custom/aliases +++ b/system/.config/custom/aliases @@ -55,4 +55,11 @@ function ebook-tools { fi docker run -it -v "${1}:/var/books" ebooktools/scripts:latest organize-ebooks.sh -v --output-folder="/var/books/organized" "/var/books" +} + +# Get Git log as markdown table +function git-markdown { + echo "| Date | Author | Subject |" + echo "|--|--|--|" + git log --pretty=format:"| %ai | %an | %s |" | grep -v "Merge branch" } \ No newline at end of file