From 0ff7cb7f69a078618eb4e1553131c0206a00521a Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 25 Jul 2006 14:10:12 +0000 Subject: [PATCH] vc-list-files: Handle git repositories, too. --- build-aux/ChangeLog | 4 ++++ build-aux/vc-list-files | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/build-aux/ChangeLog b/build-aux/ChangeLog index 0ab54c9..281057a 100644 --- a/build-aux/ChangeLog +++ b/build-aux/ChangeLog @@ -1,3 +1,7 @@ +2006-07-25 Jim Meyering + + * vc-list-files: Handle git repositories, too. + 2006-07-19 Jim Meyering * vc-list-files: Command line args correspond to an "include" diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files index b952466..c7c4dbd 100755 --- a/build-aux/vc-list-files +++ b/build-aux/vc-list-files @@ -15,7 +15,13 @@ case $# in *) echo "$0: too many arguments" 1>&2; exit 1 ;; esac -if test -d .hg; then +if test -d .git; then + if test "x$include_prefix" = x; then + git-ls-files | cut -d ' ' -f 3 + else + git-ls-files | cut -d ' ' -f 3 | grep "^$include_prefix/" + fi +elif test -d .hg; then if test "x$include_prefix" = x; then hg manifest | cut -d ' ' -f 3 else -- 2.7.4