To set your username:
git config --global user.name "[Your USERNAME]"
My username is PyTis, so I typed:
git config --global user.name "PyTis"
To test your username settings type:
git config user.name
To set your email (which is just as important for GitHub) type:
git config --global user.email "[You EMAIL]"
Pretend my email is [email protected], so I typed:
git config --global user.email "[email protected]"
To test your email settings:
git config user.email
I am sorry, I am not sure how to save the password, but the username, I am sure works.
** Pay attention here, you can apply these settings globally, or just to a specific directory/project. To apply them globally, leave in the global as I displayed above, to apply them locally, simply use the commands when in the directory you wish to apply them to, while omitting the "--global"
A few actual examples below:
(root@pluto)-(/home/jlee/NSIS-Walker)-(12:57 AM Tue May 12)->
(3 files, 60Kb)--> git config user.name "PyTis"
(root@pluto)-(/home/jlee/NSIS-Walker)-(12:57 AM Tue May 12)->
(3 files, 60Kb)--> git config user.name
PyTis
(root@pluto)-(/home/jlee/)-(12:57 AM Tue May 12)->
(3 files, 60Kb)--> git config --global user.name "PyTis"
(root@pluto)-(/home/jlee/)-(12:57 AM Tue May 12)->
(3 files, 60Kb)--> git config --global user.name
PyTis