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

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;

8 Cards in this Set

  • Front
  • Back
Initialise a new repository
git init
Add folder / file to staging area
git add <folder or file>
Commit changes
git commit -m "Message"
Push changes to remote repositary
git push origin master
or
git push [if
rename git branch
git branch -m old-name new-name
Turn on color
git config --global color.ui auto
Split edits into different chunks
git add -p
Differences between master and current branch
git log master..HEAD