git教程-工作区、暂存区、本地库(版本库)、master、远程库 作者:马育民 • 2021-01-20 21:49 • 阅读:10074 [![](https://www.malaoshi.top/upload/pic/git/QQ20210120214912.png)](https://www.malaoshi.top/upload/pic/git/QQ20210120214912.png) # 工作区 working directory,保存工程的文件夹,该文件夹存放工程、源代码、配置文件等 当工作区中有 **新建文件**、**修改文件** 时,需要通过 `git add .` 命令,添加到暂存区中 # 本地库(版本库) Repository,工作区有一个隐藏文件夹 `.git`,是 Git 的版本库。 版本库包含:暂存区 和 master ### 暂存区 stage 或 index。将要提交到版本库,但是还没有提交。一般存放在 `.git` 目录下的 `index 文件`(`.git/index`)中 通过 `git commit -m "描述"` 命令,将暂存区的内容提交到master ### master git默认主分支 通过 `git push` 命令,将master的内容 推送 到远程库 # 远程库(远程仓库) 可以是 github、gitee,也可以是企业内部搭建的 仓库 通过 `git pull` 命令,将远程库的内容 拉取 到本地库、工作区 原文出处:http://malaoshi.top/show_1IXRVJluij1.html