Hi, On Wed, 23 Jul 2008, Petr Baudis wrote: > Commit 46eb449c restricted git-filter-branch to non-bare repositories > unnecessarily; git-filter-branch can work on bare repositories just > fine. > > Cc: Johannes Schindelin <Johannes.Schindelin@xxxxxx> Funny, I did not get Cc:ed. > -git diff-files --quiet && > - git diff-index --cached --quiet HEAD -- || > - die "Cannot rewrite branch(es) with a dirty working directory." > +if [ "$(is_bare_repository)" = false ]; then > + git diff-files --quiet && > + git diff-index --cached --quiet HEAD --) || ^ I doubt this has ever passed the test suite, let alone run. Besides, this extra-funny extra indent is quite brutal on my eyes. Ciao, Dscho -- 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