Skip to content

My github isn't working. Please help me. #49815

Discussion options

You must be logged in to vote

The error message suggests that Git is unable to detect your email address and author identity. To resolve this issue, you need to set your email address and username in Git. Here are the steps you can follow:

Open the command prompt or terminal on your computer.

Run the following commands, replacing "[email protected]" with your email address and "Your Name" with your username:

git config --global user.email "[email protected]"
git config --global user.name "Your Name"

This will set your account's default identity globally, meaning that it will be used for all repositories on your computer. If you want to set your identity only for the current repository, remove the --global flag from the c…

Replies: 4 comments 6 replies

Comment options

You must be logged in to vote
1 reply
@bsce22030
Comment options

Comment options

You must be logged in to vote
5 replies
@bsce22030
Comment options

@bbkx226
Comment options

@yanoyama
Comment options

@Zarakani
Comment options

@EAPwavia1
Comment options

Answer selected by bsce22030

This comment was marked as off-topic.

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment