December 2016
Beginner
480 pages
12h 34m
English
In this lab, you’ll work through some simple examples of updating files in a local environment and viewing the files’ status and differences between the various levels along the way.
This lab assumes that you have done Connected Lab 2: Creating and Exploring a Git Repository and Managing Content. You should start out in the same directory as that lab.
$ git status
$ git status –s$ echo content > file3.c
$ git status
$ git status –s
Question:
Answer:
$ git add . (or git add file3.c)
$ git status (git status –s if you want)
Questions:
Answers:
$ echo change > file3.c
$ git status
Questions:
Read now
Unlock full access