Skip to content

Latest commit

 

History

History
74 lines (55 loc) · 3.28 KB

part1.md

File metadata and controls

74 lines (55 loc) · 3.28 KB

Git Tutorial Part 1 - Resources

Installation

  • Git for Windows
    • Take care to choose the best default editor for you (which is most probably not Vim).
    • Take care to select 'Checkout as-is, commit as-is' to turn off any line ending conversions if you do not explicitly need this feature for cross-platform development.

Lab

git init --bare demo-repo.git
# The warning 'You appear to have cloned an empty repository.' is normal at this point...
git clone demo-repo.git clone-a
git clone demo-repo.git clone-b

Textual

Basics

Theory

Study

Visual

Demo

Eye Candy

Hands-On