since it replaces characters used in many names and languages with escape sequences. Slightly refactor the code for determining author name, to make it easier to add other version control systems in future (right now it's just git and hg). Also, add some binary test artifacts to .gitignore so they don't accidentally get committed in future.
31 lines
476 B
Text
31 lines
476 B
Text
# Any path
|
|
*.swp
|
|
*~
|
|
nimcache/
|
|
|
|
# Absolute paths
|
|
/src/babel
|
|
/src/nimble
|
|
/tests/tester
|
|
|
|
# executables from test and build
|
|
/nimble
|
|
/tests/nimscript/nimscript
|
|
/tests/issue27/issue27
|
|
src/nimblepkg/cli
|
|
src/nimblepkg/packageinfo
|
|
src/nimblepkg/packageparser
|
|
src/nimblepkg/reversedeps
|
|
src/nimblepkg/version
|
|
tests/nimble-test/
|
|
tests/packageStructure/validBinary/y
|
|
tests/testCommand/testsFail/tests/t2
|
|
|
|
# Windows executables
|
|
*.exe
|
|
*.dll
|
|
|
|
# VCC compiler and linker artifacts
|
|
*.ilk
|
|
*.pdb
|
|
|