 Gitea v1.21.1 中文文档CN 构建 4. 使用 UTF-8 字符集和排序规则创建数据库。确保使用 **utf8mb4** 字符集,而不是 utf8 ,因为前者支 持 Basic Multilingual Plane 之外的所有 Unicode 字符(包括表情符号)。排序规则根据您预期的内 容选择。如果不确定,可以使用 unicode_ci 或 general_ci 。 1. CREATE DATABASE Ubuntu/Debian: 2. adduser \ 3. --system \ 4. --shell /bin/bash \ 5. --gecos 'Git Version Control' \ 6. --group \ 7. --disabled-password \ 8. --home /home/git \ 9. git 10. 11. git 13. adduser \ 14. --system \ 15. --shell /bin/bash \ 16. --comment 'Git Version Control' \ 17. --gid git \ 18. --home-dir /home/git \ 19. --create-home \ 20. git 1. mkdir0 码力 | 303 页 | 3.88 MB | 1 年前3 Gitea v1.21.1 中文文档CN 构建 4. 使用 UTF-8 字符集和排序规则创建数据库。确保使用 **utf8mb4** 字符集,而不是 utf8 ,因为前者支 持 Basic Multilingual Plane 之外的所有 Unicode 字符(包括表情符号)。排序规则根据您预期的内 容选择。如果不确定,可以使用 unicode_ci 或 general_ci 。 1. CREATE DATABASE Ubuntu/Debian: 2. adduser \ 3. --system \ 4. --shell /bin/bash \ 5. --gecos 'Git Version Control' \ 6. --group \ 7. --disabled-password \ 8. --home /home/git \ 9. git 10. 11. git 13. adduser \ 14. --system \ 15. --shell /bin/bash \ 16. --comment 'Git Version Control' \ 17. --gid git \ 18. --home-dir /home/git \ 19. --create-home \ 20. git 1. mkdir0 码力 | 303 页 | 3.88 MB | 1 年前3
 Pro Git 2nd Edition 2.1.413Contributors Introduction Getting Started About Version Control Local Version Control Systems Centralized Version Control Systems Distributed Version Control Systems A Short History of Git What is Git? Snapshots over the past few years from a relatively obscure version control system to basically dominating commercial and open source version control. I’m happy that Pro Git has done so well and has also been the ten chapters and three appendices of this book. In Chapter 1, we’re going to cover Version Control Systems (VCSs) and Git basics — no technical stuff, just what Git is, why it came about in a land0 码力 | 731 页 | 21.49 MB | 1 年前3 Pro Git 2nd Edition 2.1.413Contributors Introduction Getting Started About Version Control Local Version Control Systems Centralized Version Control Systems Distributed Version Control Systems A Short History of Git What is Git? Snapshots over the past few years from a relatively obscure version control system to basically dominating commercial and open source version control. I’m happy that Pro Git has done so well and has also been the ten chapters and three appendices of this book. In Chapter 1, we’re going to cover Version Control Systems (VCSs) and Git basics — no technical stuff, just what Git is, why it came about in a land0 码力 | 731 页 | 21.49 MB | 1 年前3
 Pro Git 2nd Edition 2.1.413 Contributors Introduction Getting Started About Version Control Local Version Control Systems Centralized Version Control Systems Distributed Version Control Systems A Short History of Git What is Git? Snapshots over the past few years from a relatively obscure version control system to basically dominating commercial and open source version control. I’m happy that Pro Git has done so well and has also been the ten chapters and three appendices of this book. In Chapter 1, we’re going to cover Version Control Systems (VCSs) and Git basics — no technical stuff, just what Git is, why it came about in a land0 码力 | 691 页 | 13.35 MB | 1 年前3 Pro Git 2nd Edition 2.1.413 Contributors Introduction Getting Started About Version Control Local Version Control Systems Centralized Version Control Systems Distributed Version Control Systems A Short History of Git What is Git? Snapshots over the past few years from a relatively obscure version control system to basically dominating commercial and open source version control. I’m happy that Pro Git has done so well and has also been the ten chapters and three appendices of this book. In Chapter 1, we’re going to cover Version Control Systems (VCSs) and Git basics — no technical stuff, just what Git is, why it came about in a land0 码力 | 691 页 | 13.35 MB | 1 年前3
 Pro Git 2nd Edition 2.1.413. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 About Version Control. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . over the past few years from a relatively obscure version control system to basically dominating commercial and open source version control. I’m happy that Pro Git has done so well and has also been the ten chapters and three appendices of this book. In Chapter 1, we’re going to cover Version Control Systems (VCSs) and Git basics — no technical stuff, just what Git is, why it came about in a land0 码力 | 501 页 | 17.96 MB | 1 年前3 Pro Git 2nd Edition 2.1.413. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 About Version Control. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . over the past few years from a relatively obscure version control system to basically dominating commercial and open source version control. I’m happy that Pro Git has done so well and has also been the ten chapters and three appendices of this book. In Chapter 1, we’re going to cover Version Control Systems (VCSs) and Git basics — no technical stuff, just what Git is, why it came about in a land0 码力 | 501 页 | 17.96 MB | 1 年前3
 Pro Git 中文版 第2版 2.1.66新计算出各个版本的文件内容。 集中化的版本控制系统 接下来人们又遇到一个问题,如何让在不同系统上的开发者协同工作? 于是,集中化的版本控制系统 (Centralized Version Control Systems,简称 CVCS)应运而生。 这类系统,诸如 CVS、Subversion 以及 Perforce 等,都有一个单一的集中管理的服务器,保存所有文件的修订版本,而协同工作的人们都通过客户端 本地版本控制 系统也存在类似问题,只要整个项目的历史记录被保存在单一位置,就有丢失所有历史更新记录的风险。 分布式版本控制系统 于是分布式版本控制系统(Distributed Version Control System,简称 DVCS)面世了。 在这类系统中,像 Git、Mercurial 以及 Darcs 等,客户端并不只提取最新版本的文件快照, 而是把代码仓库完整地镜像下来,包 括完整的历史记录。 getting started with Git. We will begin at the beginning by explaining some background on version control tools, then move on to how to get Git running on your system and finally how to get it setup to start0 码力 | 501 页 | 19.30 MB | 1 年前3 Pro Git 中文版 第2版 2.1.66新计算出各个版本的文件内容。 集中化的版本控制系统 接下来人们又遇到一个问题,如何让在不同系统上的开发者协同工作? 于是,集中化的版本控制系统 (Centralized Version Control Systems,简称 CVCS)应运而生。 这类系统,诸如 CVS、Subversion 以及 Perforce 等,都有一个单一的集中管理的服务器,保存所有文件的修订版本,而协同工作的人们都通过客户端 本地版本控制 系统也存在类似问题,只要整个项目的历史记录被保存在单一位置,就有丢失所有历史更新记录的风险。 分布式版本控制系统 于是分布式版本控制系统(Distributed Version Control System,简称 DVCS)面世了。 在这类系统中,像 Git、Mercurial 以及 Darcs 等,客户端并不只提取最新版本的文件快照, 而是把代码仓库完整地镜像下来,包 括完整的历史记录。 getting started with Git. We will begin at the beginning by explaining some background on version control tools, then move on to how to get Git running on your system and finally how to get it setup to start0 码力 | 501 页 | 19.30 MB | 1 年前3
 Pro Git 中文版 第2版 2.1.66过应用所有的补丁,可以重新计算出各个版本的文件内容。 集中化的版本控制系统 接下来人们又遇到一个问题,如何让在不同系统上的开发者协同工作? 于 是,集中化的版本控制系统(Centralized Version Control Systems,简称 CVCS)应运而生。 这类系统,诸如 CVS、Subversion 以及 Perforce 等,都 有一个单一的集中管理的服务器,保存所有文件的修订版本,而协同工作的人 本地版本控制系统也存在类似问题,只要整个项目的历史记录 被保存在单一位置,就有丢失所有历史更新记录的风险。 分布式版本控制系统 于是分布式版本控制系统(Distributed Version Control System,简称 DVCS)面世了。 在这类系统中,像 Git、Mercurial 以及 Darcs 等,客户端 并不只提取最新版本的文件快照, 而是把代码仓库完整地镜像下来,包括完 整的历史记录。 getting started with Git. We will begin at the beginning by explaining some background on version control tools, then move on to how to get Git running on your system and finally how to get it setup to0 码力 | 670 页 | 13.59 MB | 1 年前3 Pro Git 中文版 第2版 2.1.66过应用所有的补丁,可以重新计算出各个版本的文件内容。 集中化的版本控制系统 接下来人们又遇到一个问题,如何让在不同系统上的开发者协同工作? 于 是,集中化的版本控制系统(Centralized Version Control Systems,简称 CVCS)应运而生。 这类系统,诸如 CVS、Subversion 以及 Perforce 等,都 有一个单一的集中管理的服务器,保存所有文件的修订版本,而协同工作的人 本地版本控制系统也存在类似问题,只要整个项目的历史记录 被保存在单一位置,就有丢失所有历史更新记录的风险。 分布式版本控制系统 于是分布式版本控制系统(Distributed Version Control System,简称 DVCS)面世了。 在这类系统中,像 Git、Mercurial 以及 Darcs 等,客户端 并不只提取最新版本的文件快照, 而是把代码仓库完整地镜像下来,包括完 整的历史记录。 getting started with Git. We will begin at the beginning by explaining some background on version control tools, then move on to how to get Git running on your system and finally how to get it setup to0 码力 | 670 页 | 13.59 MB | 1 年前3
共 6 条
- 1














