[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [ft-devel] problems with CVS->git conversion
From: |
Ralph Giles |
Subject: |
Re: [ft-devel] problems with CVS->git conversion |
Date: |
Tue, 3 Mar 2009 12:30:13 -0800 |
On Tue, Mar 3, 2009 at 6:03 AM, Werner LEMBERG <address@hidden> wrote:
> . git format-patch
> . editing commit messages in the *.patch files
> . git am --rebasing --whitespace=nowarn *.patch
>
> works fine, however, it loses all tags created by parsecvs.
Presumedly this is because changing the log message changes the commit
hash, so the tags are no longer part of the reachable history. You
should just be able to add:
. check if the commit was tagged and 'git tag -f <tag> <commit>' for
the appropriate patches.
-r