git-query

git data extraction tool using c and libgit2

git clone https://9o.is/git/git-query.git

commit 795b5aeed7698ce88ead26ddff97d2d89741c7b7
parent 8a0eff96e7a76d7742a04780cb56aa9dc9fed354
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri,  8 Jan 2016 21:27:22 +0100

example.sh: fix go to appropriate dir

Diffstat:
Mexample.sh | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/example.sh b/example.sh @@ -34,10 +34,11 @@ done | sort -n -k 1 | cut -f 2- -d ' ' | xargs stagit-index | \ sed 's@<td>Last commit</td>@<td><a href="index-time.html">Last commit</a></td>@g' | \ sed 's@<td>Name</td>@<td><a href="index.html">Name</a></td>@g' > "${curdir}/index-time.html" +cd "${reposdir}" + # make files per repo. find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do d=$(basename "${dir}") - printf "%s..." "${d}" cd "${curdir}"