10

Mercurial has a command to list every file that the repository has for every revision:

hg manifest --all

Is there an equivalent command in Git?

Jens Erat
  • 17,897
IT2
  • 101

1 Answers1

3

I am absolutely terrible at shell scripts so this is most certainly sub-optimal, but this sort of thing might do it for you, assuming you're using bash. Hopefully someone else can come by and clean it up, or replace it with something better. I've only tested it on my Mac, so beware.

It ought to print all files in commits which are ancestors of the current HEAD. Save it in a file called manifest.sh somewhere in your path:

#!/bin/bash

TFILE=$(mktemp -t git-manifest)

for sha in $(git log --pretty=format:%H)
do
    git ls-tree --name-only --full-tree -r $sha >> $TFILE
done

sort -u $TFILE
rm $TFILE
  • 1
    No need to export since it doesn't need to be available in child processes. If the loop is over SHA hashes, the loop works just fine, otherwise something using read and quoting the variable would be better. sort has a -u option that does what uniq does. The file won't get rmd when you cancel halfway through, you'd need a trap for that, but that'd probably be excessive for this script. – Daniel Beck May 08 '12 at 04:31
  • @DanielBeck: Thanks, I updated it slightly. mktemp doesn't exist in Git Bash, I should figure out a way to deal with that so Windows can play too. – Stephen Jennings May 08 '12 at 05:47