Skip to content

Commit

Permalink
Improve .gitignore rules.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Zachary T Welch committed Oct 28, 2009
1 parent 76afa93 commit 89c1bea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 89c1bea

Please sign in to comment.