Install git

The introduction

What is Git?

Git is the most advanced distributed version control system in the world.

What is multi-version control? It’s a convenient example

For example, if you use Word or any other writing tool, you’ve probably experienced this:

  • At the beginning, WHEN I finish writing, I often want to delete a paragraph, but I am worried that I can not find it in the future. So, I’ll just copy the current file to a new Word file or something else, and then I’ll change it to a certain point, and you’ll find that you have a lot of files in your folder, and I’ll say, “This is a bit messy.” Manual funny…
  • Moreover, in terms of coordination, for example, two people write some documents separately. If the documents are frequently changed, there will be a big problem when merging them. If there is a tool or software that can record every change in the files, wouldn’t it be easy to understand it by glancing at the software? Isn’t it convenient?

Isn’t this software Git? Install Git on three different platforms

windows

  1. website
  2. Download and install
  3. Terminal testgit --version

Linux

  1. sudo apt-get install gitNote: This is Ubuntu
  2. yum install gitNote: this is centos
  3. Terminal testgit --version

mac

  1. MAC comes with
  2. Available Terminal Viewwhere git

This git series of software will be included in my Github: Github link