You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Original command here git log --since=2023-03-01 --until=2023-04-01 --format='%aN' | sort -u | while read name; do echo -en "$name\\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\\n", add, subs, loc }' -; done
I tried execSync but don't know how to solve the echo console.
Can this js do this?
The text was updated successfully, but these errors were encountered:
Original command here
git log --since=2023-03-01 --until=2023-04-01 --format='%aN' | sort -u | while read name; do echo -en "$name\\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\\n", add, subs, loc }' -; done
I tried execSync but don't know how to solve the echo console.
Can this js do this?
The text was updated successfully, but these errors were encountered: