Problem: to add files at ./shells/smallApps/*
to Git at ./.git/
when I do not have the files at ./.git/info/exclude
n
You should consider posting this question to the Git mail list (git@vger.kernel.org
). You will likely get a more prompt and complete response.
If you do decide to post there, be sure to include:
ls -al
cat .git/config
find . -name ".git*"
git status
git add editors
git add shells
git status
I see you've got git add
saying something about submodules. Do you have nested Git repositories? Do this:
$ find . -name .git
How many .git
directories are listed? If there is more than one, then you've got multiple nested repositories and that could be a cause of some of this confusion.
UPDATE
There are two general reasons why Git will ignore a file: gitignore and submodules.
To be more specific, the following conditions will cause Git to ignore a file when 'git add
' is invoked:
$GIT_DIR/exclude
..gitignore
file inside the repo..gitignore
file (specified by 'git config --global core.excludesfile
').git add
' on an ignored file:You can check to see if a particular file is ignored by invoking 'git add full/path/to/file
'.
The man page states that "If an ignored file is explicitly specified on the command line, the command will fail with a list of ignored files."
If the file is ignored, you can force it to be added with 'git add --force full/path/to/file
'.
As noted in a previous answer, shells/smallApps
is a submodule in your repository.
If the file is part of a submodule, the situation is more complex. You cannot modify the contents of the submodule from within the main project.
If you want to eliminate the submodule reference and directly track the files in your main repo, there are several steps that must be performed. You cannot simply remove the ".git" directory from the submodule. There are three links between your main repository and the submodule:
.gitmodules
file in your main repo..git/config
of your main repo.Per this related SO question, you need to perform the following steps to completely remove the sub-module:
NOTE: If another branch depends on this submodule, then removing it can corrupt your repository! This is a dangerous operation...use with caution.
.gitmodules
file..git/config
.git rm --cached path_to_submodule
(no trailing slash).The files that were part of the submodule are now untracked and you may decide to keep or delete them as desired (with the one caveat mentioned below).
If you don't need these files, you may simply delete them.
Caveat: If you want to keep these files (which you appear to want), you must manually remove the .git
directory from the submodule folder:
cd path_to_submodule
rm .git
cd ..
git add path_to_submodule
git status
git commit
UPDATE:
To assist debugging this issue, please post the output of the following complete session of commands:
cd to the top-level directory in your repo
ls -al
cat .git/config
find . -name ".git*"
git status
git add editors
git add shells
git status
Based on the description of what you have done so far, I expect to see:
.gitmodules
file anywhere.git
directory (found at the root of your repo).git
directory in editors/vim/vimdoclet
.git
directory in shells/smallApps