RELATED TAGS git, user, email, name, change settings
QUESTIONS
How can I set the git's user for committing/pushing?
Can I change my email for git?
Is there a way to change the user settings of git for all projects?
If you want to change the user info of a specific project, change your path to the project path.
cd{path/of/project} Set Email
This tells git to change the user email for all projects to the specified one.
gitconfig--global user.emailuser@email-provider.com
For changing it only for the project of the selected path, remove the flag "--global" from above:
path/of/project:$gitconfiguser.emailuser@email-provider.com Set Name
This tells git to change the user name for all projects to the specified one.
gitconfig--global user.nameUser-Name
For changing it only for the project of the selected path, remove the flag "--global" from above:
path/of/project:$gitconfiguser.nameUser-Name APP | VERSION Linux/Ubuntu
RELATED TAGS git, user, email, name, change settings
QUESTIONS
How can I set the git's user for committing/pushing?
Can I change my email for git?
Is there a way to change the user settings of git for all projects?