Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix git author setting for brew upload #15005

Merged

Commits on Jan 13, 2017

  1. Set git user info for Homebrew committing

    The `git commit` command wants to set both an author and a committer.
    The `--author` flag only sets the author,
    leaving git without a value for the committer,
    causing git to attempt to autodiscover that value.
    
    To work around it, use the `-c` git flag to temporarily set the relevant
    config variables for the scope of the command.
    aneeshusa committed Jan 13, 2017
  2. Avoid using variables in printf format string

    aneeshusa committed Jan 13, 2017
You can’t perform that action at this time.