Skip to Content
Professional Git
book

Professional Git

by Brent Laster
December 2016
Beginner
480 pages
12h 34m
English
Wrox
Content preview from Professional Git

Connected Lab 3

Tracking Content through the File Status Life Cycle

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.

Prerequisites

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.

Steps

  1. Starting in the same directory as you used for Connected Lab 2, run the status command or the short form to see how it looks when you have no changes to be staged or committed.
    $ git status
    $ git status –s
  2. Create a new file and view the status.
    $ echo content > file3.c
    $ git status
    $ git status –s

    Question:

    1. Is the file tracked or untracked?

    Answer:

    1. It’s untracked—you haven’t added the initial version to Git yet.
  3. Stage the file and check its status.
    $ git add .   (or git add file3.c)
    $ git status   (git status –s if you want)

    Questions:

    1. Is the file tracked or untracked?
    2. What does Changes to be committed mean?

    Answers:

    1. The file is now tracked—you’ve added the initial version to Git.
    2. Changes to be committed implies that files exist in the staging area and the next step for them is to be committed into the local repository.
  4. Edit the same file again in your working directory and check the status.
    $ echo change > file3.c
    $ git status

    Questions:

    1. Why do you see the file listed twice?
    2. Where is the version that’s listed as Changes to be committed ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Pro Git, Second Edition

Pro Git, Second Edition

Scott Chacon, Ben Straub
Git in Practice

Git in Practice

Mike McQuaid
McCullough and Berglund on Mastering Git

McCullough and Berglund on Mastering Git

Matthew McCullough, Tim Berglund

Publisher Resources

ISBN: 9781119284970Purchase book