How do I configure git to do push with my user to GitHub? -


when commits , push command line, git push commit github commit it's not github user. when intellij github requires username , password , commits linked account. how can configure ?

i found example here:

$ git config --global user.name "john doe" $ git config --global user.email johndoe@example.com 

you'll need set ssh key on local machine. here's how done.


Comments

Popular posts from this blog

Django REST Framework perform_create: You cannot call `.save()` after accessing `serializer.data` -

Why does Go error when trying to marshal this JSON? -