【Git】Git 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )(二)

如果使用 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】Git 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )(二)


此时执行


git commit -m "add 1 files"


命令 , 提交版本库即可 ;


【Git】Git 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )(二)






四、查询文件修改 git diff


打开文件 file1.txt , 对文件进行编译 , 写入一些字符串 ;


此时还没有调用 git add 和 git commit 命令 , 或者之前忘记了修改哪些文件的哪些内容 , 可以执行


git diff


命令 , 查看哪些文件进行了什么修改 ;


【Git】Git 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )(二)


此时执行 git status 命令 , 可以查看哪些文件进行了修改 , 但是不知道修改了具体哪些内容 ;


【Git】Git 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )(二)

上一篇:【Git】Git 基础命令 ( 添加暂存文件 git add | 提交文件至版本库 git commit | 查看版本库状态 git status | 查询文件修改 git diff )(一)


下一篇:构建高性能.NET应用之配置高可用IIS服务器-第四篇 IIS常见问题之:工作进程回收机制(上)