Detailed summary of how to use Git and GitHub

1. Introduction to Git Principles

git is an open source distributed version control system.

The process of git files from the local warehouse to the remote warehouse:

Work area ----> Temporary storage area ----> Warehouse area ----> Remote warehouse

Warehouses are divided into local warehouses and remote warehouses:

  • Local warehouse: working area, temporary storage area, warehouse area.
    The work area is the local folder where you can create, add, delete, and modify files.
    The temporary storage area refers to the operations submitted by the temporary storage workspace.
    The warehouse area records various operations on files.
  • Remote warehouse: network-side warehouse

Two, Git installation method

git download address
notepad++ download address

After downloading git, install it step by step according to the picture.

Guess you like

Origin blog.csdn.net/zhengzaifeidelushang/article/details/114640181