git FinancialAppAPI/”没有 checkout 的提交

wgxvkvu9  于 2023-08-01  发布在  Git
关注(0)|答案(1)|浏览(96)

我有两个库项目,一个是asp.net核心的解决方案文件。我选择主目录,我执行git,

git init

字符串
那么,

git status


我看到三个文件夹要取消跟踪如下,

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        .gitattributes
        .gitignore
        DAL/
        DataModel/
        FinancialAppAPI/


然后,我跑

git add .

PS D:\Lectures\LearningProjects\client\FinancialApp> git add .


然后我得到这个错误,

error: 'FinancialAppAPI/' does not have a commit checked out

fatal: adding files failed


所以,我尝试了很多git命令,所以,我不能成功地解决这个问题。

Actually, i just create my project, and first time i'm pushing it to github.


谁能帮帮忙!我会很高兴的!

hfyxw5xn

hfyxw5xn1#

这种错误通常来自子模块问题。
可能文件.gitattributes引用的子模块在您的项目中不可用。
试试这个:

rm -rf .git
rm .gitattributes
git init
git add --all

字符串

相关问题