agentmentoragentmentor

Glossary

10 terms from "Git:版本控制入门." Look them up when you get stuck; the first mention in the text carries a hover definition.

TermDefinitionSource
版本控制(version control)随时间记录文件变化、让特定版本之后可以被调出的系统。git-scm.com
repository一个被 Git 记录提交历史的文件夹。git-scm.com
commit项目在某一时刻保存下来的快照,附带一条描述改动的说明。git-scm.com
工作目录(working directory)仓库文件夹里你能看到并直接编辑的普通文件。git-scm.com
暂存区(staging area)Git 中的临时集合点,存放将要进入下一次提交的改动。git-scm.com
branch仓库内一条独立的开发线,允许在不打扰主线的情况下并行工作。git-scm.com
merge把一条分支上的改动并入另一条分支的过程。git-scm.com
commit hashGit 为每次提交生成的唯一标识,用来选中特定版本。git-scm.com
restore把文件从以前的提交复制回工作目录的 Git 命令。git.github.io