git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* .gitignore: according to what rules does this work
@ 2010-05-26 16:23 Konrad Karl
  2010-05-27  8:51 ` .gitignore: according to what rules does this work - SOLVED Konrad Karl
  2010-05-27  8:51 ` Konrad Karl
  0 siblings, 2 replies; 4+ messages in thread
From: Konrad Karl @ 2010-05-26 16:23 UTC (permalink / raw)
  To: git

I have the following directory layout and want to exclude
dir2 .. dirN

The following arrangement of .gitignore seems to work ok
but I was unable to find docs about the double asterisks.

./.gitignore:

*
*/
!.gitignore
!/dir1/


dir1/.gitignore:

!**
!**/

these two lines seem to be enough to have all subdirectories
within dir1 being included (which is desired) but why?

|-- .gitignore
|-- dir1
|   |-- .gitignore
|   |-- file1
|   |-- subdir1
|   |   |-- file1
|   |   `-- subsubdir1
|   |       |-- file1
|   |       `-- subsubsubdir1
|   |           `-- file1
|   `-- subdir2
|       `-- file1
|-- dir2
|   `-- file1
.
.
.
--- dirN
    `--file1

git add . says:
....
# Changes to be committed:
#   (use "git rm --cached <file>..." to unstage)
#
#       new file:   .gitignore
#       new file:   dir1/.gitignore
#       new file:   dir1/file1
#       new file:   dir1/subdir1/file1
#       new file:   dir1/subdir1/subsubdir1/file1
#       new file:   dir1/subdir1/subsubdir1/subsubsubdir1/file1
#       new file:   dir1/subdir2/file1

Before discovering this I was playing like this:

!*
!*/
!*/*
!*/*/ 

and so on.

Greetings,
Konrad

^ permalink raw reply	[flat|nested] 4+ messages in thread
[parent not found: <-8502405260163699034@unknownmsgid>]

end of thread, other threads:[~2010-05-27  9:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-26 16:23 .gitignore: according to what rules does this work Konrad Karl
2010-05-27  8:51 ` .gitignore: according to what rules does this work - SOLVED Konrad Karl
2010-05-27  8:51 ` Konrad Karl
     [not found] <-8502405260163699034@unknownmsgid>
2010-05-27  9:10 ` Ramkumar Ramachandra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).