You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is due to the default configuration of git, because the default author is myself. The solution is then to remove the default configuration of git with git config -e --global, and comment the name and email, like so:
# This is Git's per-user configuration file.
[user]
# name = Some User
# email = [email protected]
When committing, add the option --author to the git commit command, like so:
@bernardomig when we try to push something by our computer, the author is you! Can you solve this, buddy?
Hug,
The text was updated successfully, but these errors were encountered: