git-commit-autouser sets name and email of committer and author automatically. The name and email are determined by the url of the remote origin.
$ gem install git-commit-autouser
Add the following settings to .gitconfig:
[autouser-github]
url-regexp = github.com
name = "Ryota Arai"
email = [email protected]
[autouser-company]
url-regexp = git.company.com
name = "Ryota Arai"
email = [email protected]
[alias]
ci = commit-autouser
Use git ci
instead of git commit
:
$ git ci
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request