最佳答案
我认为如果你想跟踪文件,你应该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

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,在git中会有两个file a的状态,对吗?
staged a被提交还是让not stage a被上演,
和之前的__abc0将被丢弃?
