Adam Megacz <[email protected]> writes: > Hrm, okay, I registered [email protected] (which I would like to appear > as the author in my commits), but now the push is complaining about > "invalid committer [email protected]" -- but where is git/gerrit getting > that from? The commits ("git log") clearly show [email protected] as > the committer.
git log is showing that as the author, from your output. Check git log --pretty=full and see what the committer says. If it has the wrong address, that would imply that your git configuration isn't setting the right email address on the system where you did the commit. git commit --amend will change the committer, but of course to the same thing that Git thinks is your current identity. -- Russ Allbery ([email protected]) <http://www.eyrie.org/~eagle/> _______________________________________________ OpenAFS-devel mailing list [email protected] https://lists.openafs.org/mailman/listinfo/openafs-devel
