mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
9 lines
204 B
Bash
Executable File
9 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FROM=2016-01-01
|
|
TO=2016-12-31
|
|
|
|
echo "git log --since $FROM --before $TO | grep ^Author | sort -u -f -i -b | wc -l"
|
|
git log --since $FROM --before $TO | grep ^Author | sort -u -f -i -b | wc -l
|
|
|