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 originally sat down to write the book nearly five years ago (it took me a while to get the first version out), I had just started working at a very little known company developing a Git hosting website conceivable when I sat down to write the first edition. I wrote a small section in the original version of Pro Git about GitHub as an example of hosted Git which I was never very comfortable with. I0 码力 | 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 originally sat down to write the book nearly five years ago (it took me a while to get the first version out), I had just started working at a very little known company developing a Git hosting website conceivable when I sat down to write the first edition. I wrote a small section in the original version of Pro Git about GitHub as an example of hosted Git which I was never very comfortable with. I0 码力 | 691 页 | 13.35 MB | 1 年前3
Pro Git 2nd Edition 2.1.413Pro Git Scott Chacon, Ben Straub Version 2.1.413, 2023-12-22 Table of Contents License. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 About Version Control. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . originally sat down to write the book nearly five years ago (it took me a while to get the first version out), I had just started working at a very little known company developing a Git hosting website0 码力 | 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 等,客户端并不只提取最新版本的文件快照, 而是把代码仓库完整地镜像下来,包 最简单的方法是安装 Xcode Command Line Tools。 Mavericks (10.9) 或 更高版本的系统中,在 Terminal 里尝试首次运行 'git' 命令即可。 $ git --version 如果没有安装过命令行开发者工具,将会提示你安装。 如果你想安装更新的版本,可以使用二进制安装程序。 官方维护的 macOS Git 安装程序可以在 Git 官方网站下 载,网址为 https://git-scm0 码力 | 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 等,客户端 并不只提取最新版本的文件快照, 而是把代码仓库完整地镜像下来,包括完 Xcode Command Line Tools。 Mavericks (10.9) 或更高版本的系统中,在 Terminal 里尝 试首次运行 'git' 命令即可。 $ git --version 如果没有安装过命令行开发者工具,将会提示你安装。 如果你想安装更新的版本,可以使用二进制安装程序。 官方维护的 macOS Git 安 装 程 序 可 以 在 Git 官 方 网 站 下0 码力 | 670 页 | 13.59 MB | 1 年前3
Gitea v1.21.1 中文文档ssl_cert_file = '/path/to/postgresql.crt' 4. ssl_key_file = '/path/to/postgresql.key' 5. ssl_min_protocol_version = 'TLSv1.2' 3. 根据 PostgreSQL 的要求,调整凭据的所有权和权限: 1. chown postgres:postgres /path/to/root.crt /path/to/postgresql ssl-ca = /path/to/ca.crt 3. ssl-cert = /path/to/mysql.crt 4. ssl-key = /path/to/mysql.key 5. tls-version = TLSv1.2,TLSv1.3 3. 调整凭据的所有权和权限: 1. chown mysql:mysql /path/to/ca.crt /path/to/mysql.crt /path/to/mysql Git。要求 Git 版本 >= 2.0。 1. git --version 创建用户(推荐使用名称 git ) 1. # On Ubuntu/Debian: 2. adduser \ 3. --system \ 4. --shell /bin/bash \ 5. --gecos 'Git Version Control' \ 6. --group \ 70 码力 | 303 页 | 3.88 MB | 1 年前3
git 操作手册★git命令行客户端安装及设置 # yum install git -y #自带光盘里有 # git --version #查看git软件版本 git version 2.39.1 ★全局设置 设置用户名和邮箱,只用于提交commit时做metadata信息,不用于身份验证 #全局设置信息保存在 ~/0 码力 | 35 页 | 1.69 MB | 1 年前3
共 7 条
- 1













