Goat

From 6bit.ch wiki
Revision as of 16:44, 26 March 2025 by Xbl (talk | contribs) (→‎git)
Jump to navigation Jump to search

git

git config

Set user name
git config --add [--global] user.name "anon"

Set user email
git config --add [--global] user.email "[email protected]"

Read
git config list [--local]
git config --get <key.value>

Remove
git config --unset <key.value>
git config --unset-all <key>
git config --remove-section <section>