Table of Contents

Key Feature of GitHub

GitHub common task

Get Start with git command tool

Basic git Commands

  1. clone, get a copy from git server, like from GitHub
    cd /your_dir_to_store_the_copy
    git clone https://github.com/username/whatEverProjectName.git
  2. status check, check what is changed inside current project folder
    git status
  3. register file into changes in current project
    git add my_new_file.txt
  4. register all changes into current project status log (locally)
    git commit -m "change log description text"
  5. send changes back to original project folder
    git push
  6. get changes from original project folder
    git pull

Problems and Solution

Download Github sub folder only

Cool Github repo