To add to the git repository (easiest and most efficient way):
To add to the git repository (easiest and most efficient way):
git add .
git add .
(this will add everything in the folder (excluding stuff from .gitignore).)
(this will add everything in the folder (excluding stuff from .gitignore). It is intentionally a period because * will make git ignore already committed files.)
To commit to the git repository (this does not send to the remote server!):
To commit to the git repository (this does not send to the remote server!):
git commit -a
git commit -a
@ -39,3 +49,27 @@ To tag a commit WITH GPG verification (secure release anyone?):