This command requires a revision to be specified on the command line, so remove '--default HEAD' from the arguments to git rev-list. They are unnecessary. Signed-off-by: Brandon Casey <casey@xxxxxxxxxxxxxxx> --- git-filter-branch.sh | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/git-filter-branch.sh b/git-filter-branch.sh index 5e3fe70..25f18f8 100755 --- a/git-filter-branch.sh +++ b/git-filter-branch.sh @@ -228,11 +228,10 @@ mkdir ../map || die "Could not create map/ directory" case "$filter_subdir" in "") - git rev-list --reverse --topo-order --default HEAD \ - --parents "$@" + git rev-list --reverse --topo-order --parents "$@" ;; *) - git rev-list --reverse --topo-order --default HEAD \ + git rev-list --reverse --topo-order \ --parents --full-history "$@" -- "$filter_subdir" esac > ../revs || die "Could not get the commits" commits=$(wc -l <../revs | tr -d " ") -- 1.5.4.rc5.14.gaa8fc - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html