nothing added to commit but untracked files present

前言

今天在git commit时候遇到如下问题

On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
        mybatisMysql/src/
        mybatisxml/
nothing added to commit but untracked files present

原因

出现这个问题的原因是在于对应的文件或者对应目录下的文件没有添加.

解决办法

>git add mybatisMysql/src/
>git add mybatisxml/
git com -m “xxxxx”
git push origin master

上一篇:研磨设计模式 之 备忘录模式(Memento)1——跟着cc学设计系列


下一篇:SpringMVC登录案例