赞
踩
目录
工作区指的是电脑中的目录。
工作区有一个隐藏的目录.git,是Git的版本库。
版本库包含很多东西,最重要的是被称作stage的暂存区。Git为我们自动创建第一个分支master和指向master的HEAD指针。
将文件添加到Git版本库分为两步:
1.git add添加文件,把文件添加到暂存区。
2.git commit提交文件,把暂存区的所有内容提交到当前分支。
下面举例说明
在工作区新增一个License文本文件
- # 查看仓库状态
-
- $ git status
-
- # 查询结果
-
- On branch master
- Untracked files:
- (use "git add <file>..." to include in what will be committed)
- License
-
- nothing added to commit but untracked files present (use "git add" to track)
License文件还没有被添加,处于untracked状态。
- # 添加License文件
-
- $ git status
-
- # 仓库状态
-
- On branch master
- Changes to be committed:
- (use "git restore --staged <file>..." to unstage)
- new file: License
暂存区状态
- # 提交文件
-
- $ git commit -m "add License"
-
- # 提交结果
-
- [master 28c1971] add License
- 1 file changed, 1 insertion(+)
- create mode 100644 License
-
- # 仓库状态
-
- $ git status
- On branch master
- nothing to commit, working tree clean
-
此时版本库的暂存区是空的。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。