Git essentials

PHOTO EMBED

Tue Mar 19 2024 10:13:41 GMT+0000 (Coordinated Universal Time)

Saved by @hardikraja #commandline #git

#Avoid entering password everytime #Global
git config --global credential.helper store
or
git config credential.helper store #Non-Global


#Delete a key=value pair from git repository
git config --global --unset user.email
content_copyCOPY