Converting a repository from Git to Mercurial results in a load of spurious "committer:" lines in each log message. I can't figure out a way to not generate these. If I convert a SVN repository, these lines aren't added. It seems to be a git thing only.
This is easy to test. Here's how on Linux:
mkdir repo && cd repo
git init
echo hello > foo.txt
git add foo.txt
git commit -m"Initial import"
cd ..
hg convert repo
cd repo-hg
hg log -v
The log will say something like this:
changeset: 0:077135a87f99 tag: tip user: Your Name <[email protected]> date: Mon Jan 01 12:04:46 2001 files: foo.txt description: Initial import committer: Your Name <[email protected]>
So, how can I avoid that redundant "committer:" line?