6 lines
102 B
Bash
6 lines
102 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
git log --date=iso \
|
||
|
--pretty=format:"%h%x09%an%x09%ad%x09%s" \
|
||
|
$@ > commits.tab.txt
|