在Git中,删除也是一个修改操作,我们实战一下,先添加一个新文件test.txt到Git并且提交: 创建一个文件test.txt,写入一句话`this is new file !`. $ echo 'this is new file !' >> test.txt $ cat test.txt this is new file ! 执行命令`git add`告诉Git,添加文件到暂存区 $ git add test.txt warning: LF will be replaced by CRLF…