我有一个php项目,其中我使用neo4Jphp作为依赖:
"everyman/neo4jphp": "dev-master"
它会根据需要加载lib,但是当我正在执行时
commit add -A
它添加了vendor / neo4jphp,但没有低于该级别。
结果是neo4jphp lib没有被提交,我无法将其推送到我的远程寄存器。
我认为它可能与.gitignore
有关,但我认为不是:
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
*.iml
## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:
# User-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries
# Sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# .idea/uiDesigner.xml
# Gradle:
# .idea/gradle.xml
# .idea/libraries
# Mongo Explorer plugin:
# .idea/mongoSettings.xml
## File-based project format:
*.ipr
*.iws
## Plugin-specific files:
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
知道是什么导致这种情况吗?
答案 0 :(得分:0)
好的问题是Neo4Jphp被添加为子模块,因此,它没有提交并推送到我的存储库。
我必须从我的git模块列表中删除它,添加all并commit:
git rm -f --cached path_to_submodule
git add -A
git commit -m "commit message"
我在删除中使用了-f,否则它对我没用(可能是因为它是另一个git存储库的子模块,它在我的git中搞得一团糟)。