Background
Using Git 1.8.1.1 on Linux. The repository looks as follows:
master
book
The submodule was created as follows:
$ cd /path/to/master
$ git submodule add https://user@bitbucket.org/user/repo.git book
The book submodule is clean:
$ cd /path/to/master/book/
$ git status
# On branch master
nothing to commit, working directory clean
Problem
The master, on the other hand, shows there are "new commits" for the book submodule:
$ cd /path/to/master/
$ 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)
#
# modified: book (new commits)
#
no changes added to commit (use "git add" and/or "git commit -a")
I would like git to ignore the submodule directory completely, so that the master is also clean:
$ cd /path/to/master/
$ git status
# On branch master
nothing to commit, working directory clean
Failed Attempt #1 - dirty
Inside the file master/.gitmodules is the following, as per this answer:
[submodule "book"]
path = book
url = https://user@bitbucket.org/user/repo.git
ignore = dirty
Failed Attempt #2 - untracked
I have also tried changing master/.gitmodules to the following, as per this answer:
[submodule "book"]
path = book
url = https://user@bitbucket.org/user/repo.git
ignore = untracked
Failed Attempt #3 - showUntrackedFiles
I have also tried editing master/.git/config to the following, as per this answer:
[status]
showUntrackedFiles = no
Failed Attempt #4 - ignore
I tried adding the book directory to the master ignore file:
$ cd /path/to/master/
$ echo book > .gitignore
Failed Attempt #5 - clone
I tried adding the book directory to the master as follows:
$ cd /path/to/master/
$ rm -rf book
$ git clone https://user@bitbucket.org/user/repo.git book
Question
How do I keep the book submodule as a repository directory under the master repository yet have git ignore the book submodule? That is, I don't want to see the following:
#
# modified: book (new commits)
#
How do I suppress that message when executing git status in the master repository?
I've also read an article about git submodule pitfalls and am wondering: is this an inappropriate submodule usage?
Thank you!