当我尝试 git 添加我的文件时,我输入了
git add <insert file names here>
这工作正常。但是,当我尝试做
git commit -a
我的 git 存储库告诉我它是空的。输出的是:
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
<insert name of files here>
nothing added to commit but untracked files present (use "git add" to track)
可能有人知道这个问题的解决方案吗?谢谢。