otac0n / WebGitNet

WebGit .NET is an ASP.NET MVC app that provides access to your git repositories over HTTP. It supports browsing in a web browser AND push / pull over Git's "Smart HTTP protocol".
zlib License
132 stars 62 forks source link

Need to support renaming of users for impact calculations. #17

Closed otac0n closed 13 years ago

otac0n commented 13 years ago

This is intended to fix usernames that come from Git-SVN, that were misspelled and never corrected, or that have an unnecessary prefix e.g. DOMAIN\YourName.

otac0n commented 13 years ago

This is being worked in a topic branch, "renames", starting with commit fdd72b9dc996fab10ba35abdc4dc4719765809da.

otac0n commented 13 years ago

This is fixed in ace1d1cb2b734291fda94ed31fd40b5e28a05186.

The format for renames is:

key=="value": key="value"

OR

key=="value": key="value", key="value"

Where, key is one of name or email (case insensitive), and value is a string (repeat double quotes to escape).

The == may be subsituted with ~=, meaning a case-insensitive search or %=, meaning a RegEx replace.

otac0n commented 13 years ago

Merged into master with commit bb8559f729c63c07d1008d2b63079ec5eeb919c9.