* move shell completion scripts to where can be auto picked up Let's use switching new remote as opportunity to put shell completion scripts to where they should be and avoid git conflict during the process. * add Library/Formula and Library/Aliases symlinks Formulae and Aliases has been relocated to homebrew/core tap. The symlinks are pointed to new location to keep backward compatibility. * remove formula_renames and tap_migrations They have been replaced by the json files in the core tap. * update: set new remote * bump Homebrew version to 0.9.9
54 lines
1016 B
Plaintext
54 lines
1016 B
Plaintext
# First, ignore everything.
|
|
/*
|
|
|
|
# Explicitly ignore OS X Finder thumbnail files.
|
|
.DS_Store
|
|
|
|
# Unignore the contents of `Library` as that's where our code lives.
|
|
!/Library/
|
|
|
|
# Ignore generated files within `Library` (again).
|
|
/Library/Homebrew/doc
|
|
/Library/Homebrew/test/.bundle
|
|
/Library/Homebrew/test/bin
|
|
/Library/Homebrew/test/vendor
|
|
/Library/Homebrew/test/coverage
|
|
/Library/Homebrew/test/fs_leak_log
|
|
/Library/LinkedKegs
|
|
/Library/PinnedKegs
|
|
/Library/PinnedTaps
|
|
/Library/Taps
|
|
|
|
# Ignore `bin` contents (again).
|
|
/bin
|
|
|
|
# Unignore our `brew` script.
|
|
!/bin/brew
|
|
|
|
# Ignore `share` contents (again).
|
|
/share
|
|
/share/doc
|
|
/share/zsh
|
|
/share/zsh/site-functions
|
|
|
|
# Unignore our documentation.
|
|
!/.github
|
|
!/share/doc/homebrew
|
|
!/share/man/man1/brew.1
|
|
|
|
# Ignore `etc` contents (again)
|
|
/etc
|
|
/etc/bash_completion.d
|
|
|
|
# Unignore our shell completion
|
|
!/etc/bash_completion.d/brew
|
|
!/share/zsh/site-functions/_brew
|
|
|
|
# Unignore our root-level metadata files.
|
|
!/.gitignore
|
|
!/.travis.yml
|
|
!/.yardopts
|
|
!/CODEOFCONDUCT.md
|
|
!/LICENSE.txt
|
|
!/README.md
|