67a594c12c
I noticed while doing a build that `git status` was reporting the `obj/` directory had been modified. Add that to the list of ignored directories. Remove a couple of build artifacts (`seq` and `set_color`) which aren't created anymore. Break the ignored files into well defined groups with the entries sorted in each group.
54 lines
923 B
Plaintext
54 lines
923 B
Plaintext
# File extensions that should never be checked in regardless of which project
|
|
# directory they reside in.
|
|
*.exe
|
|
*.o
|
|
*.xccheckout
|
|
*~
|
|
|
|
# Directories that only contain transitory files from building and testing.
|
|
DerivedData/
|
|
autom4te.cache/
|
|
build/
|
|
doc/
|
|
obj/
|
|
share/man/
|
|
test/
|
|
user_doc/
|
|
|
|
# File names that can appear in the project root that represent project
|
|
# artifacts from building and testing.
|
|
.DS_Store
|
|
FISH-BUILD-VERSION-FILE
|
|
Makefile
|
|
command_list.txt
|
|
command_list_toc.txt
|
|
compile_commands.json
|
|
confdefs.h
|
|
config.h
|
|
config.h.in
|
|
config.log
|
|
config.status
|
|
configure
|
|
doc.h
|
|
fish
|
|
fish.pc
|
|
fish_indent
|
|
fish_key_reader
|
|
fish_tests
|
|
lexicon.log
|
|
lexicon.txt
|
|
lexicon_filter
|
|
messages.pot
|
|
toc.txt
|
|
version
|
|
xcodebuild.log
|
|
xcuserdata
|
|
|
|
# File names that can appear below the project root that represent project
|
|
# artifacts from building and testing.
|
|
doc_src/commands.hdr
|
|
doc_src/index.hdr
|
|
po/*.gmo
|
|
share/__fish_build_paths.fish
|
|
tests/*.tmp.*
|