Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Langhoff <martin@catalyst.net.nz>2005-09-04 14:55:29 +0400
committerJunio C Hamano <junkio@cox.net>2005-09-04 21:28:43 +0400
commit52586ecb16f2158de29daabb0ed72b094ca8d5cc (patch)
tree2fbf032d246a8f6ae02a674efd8f78e108ac2f30 /git-archimport-script
parent3292ae4794012994560816e6111d27c809f5e86a (diff)
[PATCH] archimport: avoid committing on an Arch tag
Arch tags are full commits (without any changed files) as well. Trust Arch to have put an unchanged tree in place (which seems to do reliably), and just add a tag & new branch. Speeds up Arch imports significantly, and leaves history in a much saner state. Signed-off-by: Martin Langhoff <martin@catalyst.net.nz> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-archimport-script')
-rwxr-xr-xgit-archimport-script8
1 files changed, 8 insertions, 0 deletions
diff --git a/git-archimport-script b/git-archimport-script
index 3c8aab74be..8f475fd66d 100755
--- a/git-archimport-script
+++ b/git-archimport-script
@@ -227,6 +227,14 @@ foreach my $ps (@psets) {
# find where we are supposed to branch from
`git checkout -b $ps->{branch} $branchpoint`;
+
+ # If we trust Arch with the fact that this is just
+ # a tag, and it does not affect the state of the tree
+ # then we just tag and move on
+ tag($ps->{id}, $branchpoint);
+ ptag($ps->{id}, $branchpoint);
+ print " * Tagged $ps->{id} at $branchpoint\n";
+ next;
}
die $! if $?;
}