Git | Part-2: Adding, commiting and logging
TL;DR:
Commands usage for git commit and git log
git add
Add the files to the staging area
Usage
git add <file1>…<filen>: to add the files
git commit
Add the files to the local repository(commiting).
Note: requires commit message
Usage
git commit -m:...
d4rkr0n1n.hashnode.dev1 min read