Re: how to override/disable stow's default ignore list?

"RW. S" <[email protected]> Sun, 8 Nov 2015 19:53:34 +1100
Newsgroups gmane.comp.gnu.stow.general
Message-ID <CANGutHQgEbr00mfbFJ+_xZ1fQmdW+bY0UwiPtxtynfUFxKcipA@mail.gmail.com>
~/.stow-global-ignore overrides the default list, so just `touch
~/.stow-global-ignore` or use the default list without the \.gitignore
line:

    RCS
    .+,v

    CVS
    \.\#.+       # CVS conflict files / emacs lock files
    \.cvsignore

    \.svn
    _darcs
    \.hg

    \.git

    .+~          # emacs backup files
    \#.*\#       # emacs autosave files

--