vote up 6 vote down star

I didn't set the username on my development computer and made a few commits. Can I retroactively change the username so it's clear who committed these changesets?

flag

2 Answers

vote up 7 vote down check

If you've not published your repository then this shouldn't be too hard. You need to use the Convert extension to Mercurial, which will let you 'filter' your existing repository to create a new one. the --authors switch lets you edit the author for each commit as it is filtered.

If you have published your repository, please consider the impact on your users, the mercurial wiki has some reasons not to edit history.

Enable the extension by adding these lines to your .hgrc:

[extensions]
hgext.convert=

Write a file to map the old name to the new name (authors.convert.list):

user@ubuntu=real.name@my.example.com

Run the conversion:

hg convert --authors authors.convert.list SOURCE DEST

I just checked it, it works for me :).

link|flag
Very nice and complete answer. – Martin Geisler May 26 at 21:40
vote up 1 vote down

Check out the following document. There are quite a few downsides to rewriting the history which are covered in the document, so it's typically frowned upon. However, it looks to be possible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.