3 #==============================================================================
5 # File ID: a51e903a-3457-11e4-a2e4-c80aa9e67bbd
7 # List all tree members (files and symlinks) in the whole Git history.
8 # Command line arguments are delivered to "git log".
10 # Author: Øyvind A. Holm <sunny@sunbase.org>
11 # License: GNU General Public License version 2 or later.
12 #==============================================================================
17 if test "$1" = "--version"; then
18 echo $progname $VERSION
22 if test "$1" = "-h" -o "$1" = "--help"; then
25 List all tree members (files and symlinks) in the whole Git history.
26 Command line arguments are delivered to "git log".
28 Usage: $progname [options] [ -- arguments_to_git_log ]
35 Print version information.
41 git log
--raw --no-renames "$@" |
grep ^
: | cut
-f 2 |
sort -u
43 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :