我想如果你想跟踪你应该的文件 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

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

所以如果我修改了文件a (已经在repo中)
和类型git st,git会告诉我Changes not staged for commit
如果我 git a那么文件a将在staged status
如果我修改了file a现在,将有两个状态file a中git,对不对?
所以我必须决定是否staged …
git ×1