Answers for "connect github account to git"

0

how to sign into github from terminal

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]

or to see the signed in user

git config --list
Posted by: Guest on July-25-2021
1

how to set up git for github

$ git config --global user.name "Your name here"
$ git config --global user.email "[email protected]"
Posted by: Guest on September-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language