git add <files>
-adds specified files to the staging area.
git add .
-adds all files to the staging area.
git commit -m "Commit-Message"
-Committing staged file to git with a message.
Last updated 3 years ago