aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-15 20:46:38 -0700
committerJunio C Hamano <gitster@pobox.com>2011-10-15 20:46:38 -0700
commit3197bd850b193a0d182674ab9705cf4acdc313e3 (patch)
treeef5ff32e290de2ba0e028385fe148f9c87108bde
parentMerge branch 'jc/maint-fsck-fwrite-size-check' into maint (diff)
parentfilter-branch: use require_clean_work_tree (diff)
downloadgit-3197bd850b193a0d182674ab9705cf4acdc313e3.tar.gz
git-3197bd850b193a0d182674ab9705cf4acdc313e3.zip
Merge branch 'jk/filter-branch-require-clean-work-tree' into maint
* jk/filter-branch-require-clean-work-tree: filter-branch: use require_clean_work_tree
-rwxr-xr-xgit-filter-branch.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/git-filter-branch.sh b/git-filter-branch.sh
index 804a7f4bc9..add2c0247f 100755
--- a/git-filter-branch.sh
+++ b/git-filter-branch.sh
@@ -108,9 +108,7 @@ OPTIONS_SPEC=
. git-sh-setup
if [ "$(is_bare_repository)" = false ]; then
- git diff-files --ignore-submodules --quiet &&
- git diff-index --cached --quiet HEAD -- ||
- die "Cannot rewrite branch(es) with a dirty working directory."
+ require_clean_work_tree 'rewrite branches'
fi
tempdir=.git-rewrite