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

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;

10 Cards in this Set

  • Front
  • Back
git init
git init
-------------------------------
Create a Git repository
git clone /path/to/repository
-------------------------------
create a working copy of a local repository
git clone
username@host:/path/to/repository
git clone
username@host:/path/to/repository
-------------------------------
create a working copy of a remote repository
git add <filename>
git add <filename>
-------------------------------
Add changes to the index
git add *
git add *
-------------------------------
add changes to the index (shortcut)
git commit -m "Commit Message"
git commit -m "Commit Message"
-------------------------------
Commit changes to HEAD
git push origin master
git push origin master
-------------------------------
Send your changes to your remote repository
git remote add origin <server>
git remote add origin <server>
-------------------------------
push changes to remote server
ctrl + a + |
ctrl + a + |
-------------------------------
Tmux: split pane vertically
ctrl + a + -
ctrl + a + -
-------------------------------
Tmux: split pane horizontally