View on GitHub

reading-notes

The Summury

Table of Content

  1. What is Git
  2. Git vs GitHub
  3. Termonolgies with short-cut
  4. Common terminals used
  5. A-c-P concept

Git

It is one of the DVCS (Distributed Version Control System) types which uses CLI (command line interfrence) tool.

logo

Git vs GitHub

  1. Git
    • locally
    • VCS
    • CLI
  2. GitHub
    • online
    • GUI
    • VCS

Termonolgies with short-cut

Common terminals used

  1. git clone
    copy to local device
  2. git status
    status what I did to be ready to commit
  3. git log
    gives information about the author

A-C-P concept

A-C-portable
It is the the importnant commands we should use them for each editing. We use git terminals
  1. Git add.
  2. git commit-m “why”
  3. git push orgin main