From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.1 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id 02A111F454 for ; Fri, 18 Jan 2019 22:31:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730013AbfARWbr (ORCPT ); Fri, 18 Jan 2019 17:31:47 -0500 Received: from dcvr.yhbt.net ([64.71.152.64]:43570 "EHLO dcvr.yhbt.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729932AbfARWbr (ORCPT ); Fri, 18 Jan 2019 17:31:47 -0500 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 529251F453; Fri, 18 Jan 2019 22:31:47 +0000 (UTC) Date: Fri, 18 Jan 2019 22:31:47 +0000 From: Eric Wong To: Steve Keller Cc: git@vger.kernel.org Subject: Re: How to convert SVN tags to git tags? Message-ID: <20190118223147.bcmyh4g7rxancgii@dcvr> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Steve Keller wrote: > After converting from SVN to git using git svn init + git svn fetch, > my SVN tags appear as remote branches in git. I find many suggestions > to convert these to git tags by calling git tag -a > but this gives something like this Hi Steve, instead of an annotated tag ("-a"), you can use a lightweight tag by omitting the "-a". Fwiw, I chose to map SVN "tags" to remote branches in git since some projects I followed back in the day had moving tags in SVN.