如果使用 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 命令 , 可以查看哪些文件进行了修改 , 但是不知道修改了具体哪些内容 ;