我想如果你想跟踪文件,你应该 git add [files you want to track]
我不知道为什么收到消息Changes not staged for commit。
如果这些文件没有上演,就不应该git告诉我这些文件是 Untracked那样的

我所做的就是从develop分支创建一个新功能并在feature/change_excel_format分支中工作
我以为这些文件应该处于staged状态
但是git status告诉我Changes not staged for commit

为了简单,我只知道有3个阶段的git untracked,staged,committed
任何一个可以告诉我,究竟是什么阶段了Changes not staged for commit

因此,如果我修改了文件a (已经在仓库中)
并输入git stgit会告诉我Changes not staged for commit
如果我 git a那么文件a将在staged status
如果我file a现在修改了,file ain中会有两个状态git,对吗?
因此,我必须决定是staged a进行提交还是进行not stage a分段,然后将先前分段的分段file a丢弃?
