https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f074c970-9942-4f71-810b-10221119be21/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/a194779b-89d0-477f-8f10-11a7e427e74b/Untitled.png

I added 2 files(4 lines) of comments.

And i'm only gonna git add one file.

git add calculator.py: designate as a target of commit

git status: show current status of project directory which git knows

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/54925b4e-355f-46e0-9244-8c62c4a331e1/Untitled.png

git add License: designate as a target of commit

mkdir meeting-log: make new directory which is gonna save meeting logs

cd meeting-log

touch day1: make document named "day1"

touch day2: make document named "day2"

cd ../: go back to MathTool directory

git add meeting-log

if you add directory, all files in the directory are added to staging area.

How add to all files in once

  1. modify 2 files