Better git log method for creating task time graph
parent
6ae5f7d616
commit
7961b959e3
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
src="${1?Missing source document}"
|
src="${1?Missing source document}"
|
||||||
|
path="${2?Missing spec src path}"
|
||||||
|
|
||||||
domake()
|
domake()
|
||||||
{
|
{
|
||||||
|
@ -18,7 +19,7 @@ domake \
|
||||||
&& \
|
&& \
|
||||||
(
|
(
|
||||||
echo -n '0 ' && gendate && tail -n1 taskstats.dat \
|
echo -n '0 ' && gendate && tail -n1 taskstats.dat \
|
||||||
&& git log --first-parent --no-merges --pretty=format:'%ar %h' \
|
&& git log --no-merges --pretty=format:'%ar %h' -- "$path" \
|
||||||
| awk '
|
| awk '
|
||||||
BEGIN {
|
BEGIN {
|
||||||
last=""
|
last=""
|
||||||
|
|
Loading…
Reference in New Issue