On Thu, 19 Jan 2017 12:36:13 -0800 Michael <[email protected]> wrote:
[...] > Does it make sense to let git have two different gitignore files, so > that one can be tracked, and the other not? Or am I doing something > really wrong somehow? This is already there: let's cite `git help ignore`: | NAME | gitignore - Specifies intentionally untracked files to ignore | | SYNOPSIS | $HOME/.config/git/ignore, $GIT_DIR/info/exclude, .gitignore As you can see, there's one "per-user global" file, one per-repository file, which is a part of the configuration and hence it's not affected but push/fetch operations, and another one you're already familiar with. So you're looking for ".git/info/exclude" for your case. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
