about summary refs log tree commit homepage
path: root/script
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-02-02 06:52:17 +0000
committerEric Wong <e@yhbt.net>2020-02-02 17:29:53 +0000
commitb02b2a5d7cb5a811f041febd09d625bdc1af1d8e (patch)
tree07294c5098970508200dfd78893be0b409e1a01a /script
parent45e2c97624268da5e030ac3e4c033e6022b8c0de (diff)
downloadpublic-inbox-b02b2a5d7cb5a811f041febd09d625bdc1af1d8e.tar.gz
Looking at git history, they were never used.
Diffstat (limited to 'script')
-rwxr-xr-xscript/public-inbox-convert6
1 files changed, 0 insertions, 6 deletions
diff --git a/script/public-inbox-convert b/script/public-inbox-convert
index 8ac111a2..acecf3d5 100755
--- a/script/public-inbox-convert
+++ b/script/public-inbox-convert
@@ -87,7 +87,6 @@ $clone may not be valid after migrating to v2, not copying
         }
 });
 my $state = '';
-my ($prev, $from);
 my $head = $old->{ref_head} || 'HEAD';
 my ($rd, $pid) = $old->git->popen(qw(fast-export --use-done-feature), $head);
 $v2w->idx_init;
@@ -132,11 +131,6 @@ while (<$rd>) {
                         $last = 'd';
                         next;
                 }
-                if (m{^from (:[0-9]+)}) {
-                        $prev = $from;
-                        $from = $1;
-                        # no next
-                }
         }
         last if $_ eq "done\n";
         $w->print($_) or $im->wfail;