Presentation and Demo
Overview
Teaching: 10 min
Exercises: 0 minQuestions
Introduction to Version Control and Git
Objectives
The live coding demonstration will cover:
+ git config --global user.name
+ git config --global user.email
+ git config --global core.editor emacs # NOTE VIM/NANO
+ Can configure globablly or locally
+ git config --global -l
+ mkdir projectarea.git
+ git init
+ git status
+ ls -larth
+ ls .git
Key Points