Browse Source

Improve .gitignore rules.

A '.*' rule prevents the 'git submodule add' from correctly adding the
first submodule, because it creates the .gitmodule file.  This file will
not be added (without -f) result in incomplete submodule commits.
The new rules mask the specific files present in my own build tree, but
additional rules may be needed to hide other types of temporary files.
tags/v0.3.0-rc0
Zachary T Welch 14 years ago
parent
commit
89c1bea931
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      .gitignore

+ 5
- 1
.gitignore View File

@@ -1,13 +1,17 @@
# stuff "git status" should ignore

# build output
.*
.libs
.deps
*.o
*.a
*.lo
*.la
*.in

# editor files
*.swp

startup_tcl.c
xscale_debug.h



Loading…
Cancel
Save