From: Michael Barabanov <michael.barabanov@gmail.com>
To: gitster@pobox.com
Cc: git@vger.kernel.org, ijc@hellion.org.uk,
Michael Barabanov <michael.barabanov@gmail.com>
Subject: [PATCH] filter-branch: skip commits present on --state-branch
Date: Fri, 22 Jun 2018 21:36:39 -0700 [thread overview]
Message-ID: <20180623043639.7727-1-michael.barabanov@gmail.com> (raw)
The commits in state:filter.map have already been processed, so don't
filter them again. This makes incremental git filter-branch much faster.
Also add tests for --state-branch option.
Signed-off-by: Michael Barabanov <michael.barabanov@gmail.com>
---
git-filter-branch.sh | 3 +++
t/t7003-filter-branch.sh | 15 +++++++++++++++
2 files changed, 18 insertions(+)
diff --git a/git-filter-branch.sh b/git-filter-branch.sh
index ccceaf19a..2df7ed107 100755
--- a/git-filter-branch.sh
+++ b/git-filter-branch.sh
@@ -372,6 +372,9 @@ while read commit parents; do
git_filter_branch__commit_count=$(($git_filter_branch__commit_count+1))
report_progress
+ if test -r "$workdir/../map/$commit"; then
+ continue
+ fi
case "$filter_subdir" in
"")
diff --git a/t/t7003-filter-branch.sh b/t/t7003-filter-branch.sh
index ec4b160dd..e23de7d0b 100755
--- a/t/t7003-filter-branch.sh
+++ b/t/t7003-filter-branch.sh
@@ -107,6 +107,21 @@ test_expect_success 'test that the directory was renamed' '
test dir/D = "$(cat diroh/D.t)"
'
+V=$(git rev-parse HEAD)
+
+test_expect_success 'populate --state-branch' '
+ git filter-branch --state-branch state -f --tree-filter "touch file || :" HEAD
+'
+
+W=$(git rev-parse HEAD)
+
+test_expect_success 'using --state-branch to skip already rewritten commits' '
+ test_when_finished git reset --hard $V &&
+ git reset --hard $V &&
+ git filter-branch --state-branch state -f --tree-filter "touch file || :" HEAD &&
+ test_cmp_rev $W HEAD
+'
+
git tag oldD HEAD~4
test_expect_success 'rewrite one branch, keeping a side branch' '
git branch modD oldD &&
--
2.17.1
next reply other threads:[~2018-06-23 4:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-23 4:36 Michael Barabanov [this message]
2018-06-25 22:14 ` [PATCH] filter-branch: skip commits present on --state-branch Junio C Hamano
2018-06-26 4:07 ` [PATCH v2] " Michael Barabanov
2018-06-26 18:58 ` Ian Campbell
2018-06-26 22:44 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180623043639.7727-1-michael.barabanov@gmail.com \
--to=michael.barabanov@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=ijc@hellion.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).