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