GitGit 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )
Posted 韩曙亮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GitGit 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )相关的知识,希望对你有一定的参考价值。
一、添加暂存文件 git add
在 Git 版本库 目录中 , 创建 1 1 1 个新文件 , 使用 git add 命令 , 可以将文件添加 " 暂存区 " ;
在 Git 版本库 目录 , 创建 file1.txt 文件 , 执行
git add file1.txt
命令 , 将其提交到 版本库 暂存区 ;
git add
命令 , 可以一次性添加多个文件到 " 暂存区 " ;
在 版本库 目录中 , 创建 file2.txt 和 file3.txt 2 2 2 个文件 , 使用
git add file2.txt file3.txt
命令 , 将这两个文件添加到暂存区 ;
注意 : 提交代码时 , 需要先 执行 git add 命令 将文件添加到 " 暂存区 " , 然后执行 git commit 命令 将文件提交到 " 版本库 " ;
二、提交文件至版本库 git commit
使用 git add
命令 , 将文件提交到 暂存区 , 并没有真正提交到 版本库 中 , 还需要执行 git commit 命令 , 可以将文件改变正式提交到版本库 ;
git commit 命令可以使用 -m 参数配置本次提交版本库说明 , 如添加了哪些文件 , 修改了哪些文件内容 , 新增加了功能 , 修复 BUG 等 ;
执行
git commit -m "add 3 files"
命令 , 可以将上述添加到 " 暂存区 " 的文件 , 提交到版本库中 ;
执行过程 : git commit
命令如果执行成功 , 会打印出本次提交版本库有哪些变动 , 此处提交的版本库增加了
3
3
3 个文件 ;
D:\\Git\\git-learning-course>git commit -m "add 3 files"
[master f95c831] add 3 files
3 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 file1.txt
create mode 100644 file2.txt
create mode 100644 file3.txt
D:\\Git\\git-learning-course>
注意 : 提交代码时 , 需要先 执行 git add 命令 将文件添加到 " 暂存区 " , 然后执行 git commit 命令 将文件提交到 " 版本库 " ;
三、查看版本库状态 git status
执行
git status
命令 , 可以查看版本库状态 ; 当前有没有需要提交的内容 , 版本库是否干净 ;
执行过程 :
D:\\Git\\git-learning-course>git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working tree clean
D:\\Git\\git-learning-course>
如果使用 git add file4.txt
命令 , 添加了一个文件到暂存区 , 但是没有执行 git commit
提交版本库 , 此时就会提示
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file: file4.txt
内容 , 告诉你现在需要提交版本库 , 当前版本库不干净 ;
执行过程 :
D:\\Git\\git-learning-course>git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file: file4.txt
D:\\Git\\git-learning-course>
此时执行
git commit -m "add 1 files"
命令 , 提交版本库即可 ;
四、查询文件修改 git diff
打开文件 file1.txt , 对文件进行编译 , 写入一些字符串 ;
此时还没有调用 git add
和 git commit
命令 , 或者之前忘记了修改哪些文件的哪些内容 , 可以执行
git diff
命令 , 查看哪些文件进行了什么修改 ;
此时执行 git status
命令 , 可以查看哪些文件进行了修改 , 但是不知道修改了具体哪些内容 ;
以上是关于GitGit 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )的主要内容,如果未能解决你的问题,请参考以下文章
GitGit 基础命令 ( Git 版本库概念 | 创建版本库 git init | 克隆版本库 git clone )
GitGit 基础命令 ( Git 版本库概念 | 创建版本库 git init | 克隆版本库 git clone )