• 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/19

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;

19 Cards in this Set

  • Front
  • Back

Initialise GIT Repo

git init

Inspect contents of Working Directory and Staging Area

git status

Add files from working directory to Staging Area

git add

Show diff between Working Directory and Staging Area

git diff

Permanently store changes from Staging Area to Repo

git commit

History of previous commits

git log

Discard changes in the working directory

git checkout HEAD filename

Unstage file changes in the staging Area

git reset HEAD filename

Reset to previous commit in commit history

git reset SHA

List all GIT Projects Branches

git branch

Create a new branch

git branch branch_name

Switch from one branch to another

git checkout branch_name

Join file changes from one branch to another

git merge branch_name

Delete a branch

git branch -d branch_name

Create a local copy of a remote repo

git clone

List Git project's remotes

git remote -v

Fetch work from remote into local

git fetch

Merge remote master to local branch

git merge origin/master branch_name

Push local branch to remote

git push origin branch_name