Git enterprise development control theory and practice - from entry to in-depth (1) | Why do you need Git | Git installation

前言 

那么这里博主先安利一些干货满满的专栏了!

首先是博主的高质量博客的汇总,这个专栏里面的博客,都是博主最最用心写的一部分,干货满满,希望对大家有帮助。

高质量博客汇总https://blog.csdn.net/yu_cblog/category_12379430.html

Then there is the column "Git Enterprise Development Control Theory and Practical Operations", which is the blogger's most informative column recently. I hope you pay more attention!
Git enterprise development control theory and practice icon-default.png?t=N6B9https://blog.csdn.net/yu_cblog/category_12419275.html?spm=1001.2014.3001.5482

Blogger's Github home page

There are some projects made by bloggers themselves, I hope it will be helpful to everyone.

Yufccode (Fengcheng Yu) · GitHubfocus on backend development. Yufccode has 12 repositories available. Follow their code on GitHub.https://github.com/Yufccode

Why do you need Git

What's wrong with the development

I don’t know if you have encountered such a situation when you are working or studying: when we write various documents, in order to prevent document loss, make mistakes, and restore to the original version after mistakes, we have to make a copy, such as:

  • report-v1
  • Report-V2
  • Report-V3
  • Report - Definitive Edition
  • Report - Final
  • Report - Ultimate Evolution

Each version has its own content, but in the end only one report will be used by us.

With the increasing number of versions, maintaining a good version is very challenging!

Do we still know what the modified content of the respective versions is? ?

So version control is needed!

version controller

A management system that records each modification and version iteration. Git is a current mainstream version controller.

Git installation

hundred

sudo yum -y install git

People

sudo apt install git

Windows

Reference video:

3. Installing git and graphical interface tools_哔哩哔哩_bilibili 3. Installing git and graphical interface tools is the third episode of gitee (code cloud) registration and code submission [hand in hand] video, the collection has a total of 13 episodes , video favorite or follow UP master, and learn more about related video content in time. https://www.bilibili.com/video/BV1hf4y1W7yT/?p=3&vd_source=b57c3f3e8a7507d4af7322c28f05fdbc

Guess you like

Origin blog.csdn.net/Yu_Cblog/article/details/132449306