Ich mache ein Git Repository für meine MacVim Installation. Einige der Plugins in meinem Repository haben ihre eigenen .git-Ordner und Repos. Das Problem ist ... wenn ich versuche, einen dieser Ordner zu meinem Haupt-Repository hinzuzufügen, tut das nichts.Git Ordner mit vorhandenem Git Repository hinzufügen
Meine Vermutung:
ich den Ordner nicht hinzufügen kann, weil es ein git Repo auf seine eigene ist. Ich muss als Submodul hinzufügen oder den .git-Ordner entfernen.
Wie füge ich meine Sub-Repos als Submodul hinzu?
bryan-mini:.vim bsaltzman$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
# (commit or discard the untracked or modified content in submodules)
#
# modified: bundle/YouCompleteMe (modified content)
# modified: bundle/nerdtree (modified content)
# modified: bundle/ultisnips (modified content)
#
no changes added to commit (use "git add" and/or "git commit -a")
// This
bryan-mini:.vim bsaltzman$ git add bundle/YouCompleteMe/
// OR THIS
bryan-mini:.vim bsaltzman$ git submodule add bundle/YouCompleteMe/
repo URL: 'bundle/YouCompleteMe/' must be absolute or begin with ./|../
bryan-mini:.vim bsaltzman$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
# (commit or discard the untracked or modified content in submodules)
#
# modified: bundle/YouCompleteMe (modified content)
# modified: bundle/nerdtree (modified content)
# modified: bundle/ultisnips (modified content)
#
no changes added to commit (use "git add" and/or "git commit -a")