• 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

config

Set options for a repository for Git users, as well as other global options

init

Create a Git repository or reinitialize an existing one

clone

Create a working copy of an existing repository

add

Add files to be tracked by the Git repository

commit

Update the Git repository with your changes, creating a “snapshot” of that repository

status

Display the status of the repository

branch

Manage branches, or pointers to specific repository snapshots after committing changes

merge

Integrate changes from one branch into a “master” branch

pull

Acquire and merge changes made to the other repositories and branches into the local working copy

push

Upload a local working copy of a repository to a remote repository, such as a centralized repository

log

Display the changes made to a local repository

checkout

Switch to a specific branch to work with