To specify your username: git config --global user.name "[Your USERNAME]"
My username is PyTis, so I typed: git config --global user.name "PyTis"
To verify the username, enter: git config user.name To configure your email (which is also important for GitHub), enter:
git config --global user.email "[You EMAIL]"
Pretend my email address is me@someaddress.com , so I typed: git config --global user.email " me@someaddress.com "
To check email settings: git config user.email
Sorry, I'm not sure how to save the password, but the username, I'm sure, works.
** Please note that you can apply these parameters globally or only to a specific directory / project. To apply them globally, leave them global, as I showed above, to apply them locally, just use the commands when in the directory to which you want to apply them, 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