2/6: Next in our Git journey is ➕ #GitAdd. This nifty command allows you to stage files for the next commit. Use 'git add <file>' to add specific files or 'git add .' to add all changes. Remember, this step prepares your changes to be committed, so choose wisely! #VersionControl
git commit _ saves the snapshot to the project history and completes the change tracking process. A commit functions like taking a photo, anything that has been staged with gitadd will become part of the snapshot whit gitcommit.