summaryrefslogtreecommitdiff
path: root/bin/git-branchmove
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2019-05-03 12:52:36 -0700
committerSean Whitton <spwhitton@spwhitton.name>2019-05-03 12:52:36 -0700
commit847fd13f13839c72165597aca30c6a9b9c8b53d2 (patch)
tree51e43597e1a7c188317030e6ee9e64e09bd4d4b5 /bin/git-branchmove
parente5ac5551bb8ff2d5f1054ca6783ce947f264dddb (diff)
downloaddotfiles-847fd13f13839c72165597aca30c6a9b9c8b53d2.tar.gz
rm unused variable
Diffstat (limited to 'bin/git-branchmove')
-rwxr-xr-xbin/git-branchmove2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/git-branchmove b/bin/git-branchmove
index 2fe23651..7ed63194 100755
--- a/bin/git-branchmove
+++ b/bin/git-branchmove
@@ -54,7 +54,7 @@ die "git-branchmove: unknown operation\n"
my @branch_pats = map { $_ =~ s|^|[r]efs/heads/|; $_ } @patterns;
# get lists of branches, prefixed with 'refs/heads/' in each case
-my @source_branches, my @dest_branches, my $update_msg;
+my @source_branches, my @dest_branches;
my @local_branches = map {
my ($hash, undef, $ref) = split(/\s/, $_);
{ hash => $hash, ref => $ref }