Skip to content

Commit

Permalink
perfect:add meta info
Browse files Browse the repository at this point in the history
  • Loading branch information
JunLiangWangX committed Mar 4, 2024
1 parent 4e106d7 commit acd16f5
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/docs/version-control/what-is-version-control-sys.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
---
title: 什么是版本控制系统
head:
- - meta
- name: description
content: 版本控制系统(Version Control System,VCS)是一种用于跟踪和管理文件或代码版本的工具或系统。它使得开发人员可以更好地组织、协调和追踪代码的修改,提高团队的合作效率,减少错误和冲突,并为项目的可维护性和可靠性提供支持。
- - meta
- name: keywords
content: 版本控制系统 Version Control System 仓库 Repository 分支 Branch 标签 Tag 集中式版本控制系统 CVCS 分布式版本控制系统 DVCS
---
# 什么是版本控制系统

想必大家在多人开发时一定会遇到这样的问题:
Expand Down Expand Up @@ -48,12 +58,12 @@

### 分支(Branch)

在版本控制系统中可以使用分支为仓库创建的独立开发路径分支允许开发人员在不影响主线开发的情况下进行并行开发、实现新功能或修复错误,分支可以合并回主线或其他分支。
**在版本控制系统中可以使用分支为仓库创建的独立开发路径分支允许开发人员在不影响主线开发的情况下进行并行开发、实现新功能或修复错误,分支可以合并回主线或其他分支**

![branch-example](../../public/branch-example.png)

### 标签(Tag)

在版本控制系统中可以使用标签为分支标记特定的版本,通常是重要的发布点或里程碑。标签可以使开发者轻松地回溯到特定版本,例如软件发布版本。
**在版本控制系统中可以使用标签为分支标记特定的版本,通常是重要的发布点或里程碑。标签可以使开发者轻松地回溯到特定版本,例如软件发布版本。**

![tag-example](../../public/tag-example.png)

0 comments on commit acd16f5

Please sign in to comment.