Introduction to Git
George Boorman
Curriculum Manager
git add README.md
git add .
.
= all files in the current directory and sub-directoriesgit commit -m "Adding a README."
[main cb33c18] Adding a README.
1 file changed, 1 insertion(+)
create mode 100644 README.md
-m
Allows a log message without opening a text editorIntroduction to Git