sh
$ cargo install git-author
```sh
$ git author [config file location] $ git author get [config file location]
$ git author set [config file location]
$ git author unset [config file location]
$ git author replace simple
$ git author replace detail --filter-author
sh
$ git author [config file location]
$ git author get [config file location]
You can get user.name and user.email.
sh
$ git author set [config file location] <name> <email>
You can set user.name and user.eamil with git author set foo foo@abc.com
.
sh
$ git author unset [config file location]
You can unset user.name and user.email.
sh
$ git author replace simple <old-name> <old-email> [new-name] [new-email]
Replace the Author or Committer's old-name
with old-email
and new-name
with new-email
in the past commit.
If new-name and new-email are omitted, use the name and email that can be obtained with git author
.
sh
$ git author replace detail --filter-author <name> <email> --filter-committer <name> <email> --replace-target <replace-target>
sh
--filter-author <name> <email> filter with author. Required when `filter-committer` is not specified.
--filter-committer <name> <email> filter with committer. Required when `filter-author` is not specified.
--filter-type <filter-type> You can specify `and` or `or`. Valid only both `filter-author` and `filter-
committer` are specified. It is ignored at other times.
The defalut is `and`.
If `and` is specified, commits that match `author` and `committer` are
specified, and if `or` is specified, commits that match either `author` or
`committer` are included. [default: and]
--author <name> <email> author after replacement. If not specified, use author which can be
obrtained by `git author get`
--committer <name> <email> committer after replacement. If not specified, use author which can be
obrtained by `git author get`
--replace-target <replace-target> Replacement target. You can specify `author` or`committer` or `author-and-
committer`.
MIT