X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=git-archimport-script;h=8f475fd66da3c09a4f6a0f8ecdc708334d861ae1;hb=78938b0d8a95b09d94af214fdb6b5f053a5edb98;hp=3c8aab74be49fd69a23ad140b8f8b5bb12fa13b2;hpb=3292ae4794012994560816e6111d27c809f5e86a;p=git.git diff --git a/git-archimport-script b/git-archimport-script index 3c8aab74..8f475fd6 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 $?; }