topfunky / PeepOpen-Issues

Bug reports and feature requests for the PeepOpen application
http://peepcode.com/products/peepopen
41 stars 1 forks source link

PeepOpen does not ignore contents of non-root git repos #173

Open entombedvirus opened 13 years ago

entombedvirus commented 13 years ago

If you have the following project structure:

app_root
    src
    lib
        some_dependency --> /home/joe/projects/some_dependency

where some_dependency inside the lib folder is a symlink to an independent git repo, then PeepOpen fails to ignore the .git folder in app/lib/some_dependency

tdenkinger commented 13 years ago

In Preferences->Directories To Ignore, change

^(\.git|\.hg|\.svn|\.sass-cache|build|tmp|log|vendor\/(rails|gems|plugins))

to this:

^(.*\.git|\.hg|\.svn|\.sass-cache|build|tmp|log|vendor\/(rails|gems|plugins))

It should ignore any .git directory now.