added notation on even more usefulfeatures of git

This commit is contained in:
tomit4 2022-06-23 03:54:12 -07:00
parent 3437071dbd
commit fde5b6ac60

View file

@ -10,6 +10,13 @@ git config --global user.name "Your name"
git config --global user.email "yourname@youremail.com"
#Configures git with your git(hub) user email
git config credential.helper 'cache --timeout=3600'
# Allows passwordless commits for an hour after invokation
edit .git/config with this so that it doesn't ask for gpgkeys:
[commit]
gpgsign = false
git init
#initializes a new git repository on local machine