When I try to do so I face the below issue
Asked
Active
Viewed 115 times
0

Bharath Kashyap
- 133
- 1
- 2
- 9
-
So did you think to actually *try* those `git config` commands that it suggested may fix your problem? – paxdiablo Sep 27 '21 at 08:37
-
Thanks for your response! You mean I should config using the git config command – Bharath Kashyap Sep 27 '21 at 08:38
-
Yes, that's what I'm suggesting. – paxdiablo Sep 27 '21 at 08:38
1 Answers
1
First, you must configure user email and user name according your github account.
-
Thanks for your response! I'm new to this can you please guide me on how to do that – Bharath Kashyap Sep 27 '21 at 08:41
-
11. Open the command line. 2. Set your username: ```git config --global user.name "FIRST_NAME LAST_NAME"``` 3. Set your email address: ```git config --global user.email "MY_NAME@example.com"``` – Adhitya Bagasmiwa Permana Sep 27 '21 at 08:44