Setting different Git emails by project or source
Answered
I have 2 different git systems I work with github and a work bitbucket. How do I set the specific userids / emails per either project or git system within Pycharm?
Please sign in to leave a comment.
Other than setting in git command line directly in the folder.
IDE uses settings from git config.
If git config user.name and git config user.email in the context of a git repository returns nothing, IDE prompts for a username/email. The pormpt allows to configure settings either globally, or for the repository.
There is no UI to change these settings from the IDE.