• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/12

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

12 Cards in this Set

  • Front
  • Back


Git commands can be divided into which two categories?


"Plumbing," the powerful, lower-level commands that do a lot of heavy lifting, and "porcelain," the higher-level commands that make normal interaction with Git friendly.


In version control parlance, what is a repository?


The repository is where all of the version control information about a project is stored.

When are commits typically made when using version control?

Whenever a change is considered complete.

In version control, what do we call a finished change to the project?

A commit.

Tool that a version control system provides?

Tools for exploring your project's history.

It was created in large part to help manage what software project?

The Linux kernel.

The respiratory for any given project using version control is typically stored in:

A set of hidden files and folders.

-a

Short for all.

-m

Sends message.

How do you create a new repository in the current folder?

> git init

The act of sending changes to and from remote repositories in Git is typically described by what verbs?

Push and Pull.

In Git, the act of creating a new repository that is a copy of another one is called:

Cloning.