forked from ostreedev/ostree
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It's a lot nicer than manually maintaining .gitignore in general. Closes: ostreedev#235 Approved by: giuseppe
- Loading branch information
1 parent
e81aabb
commit 984bf91
Showing
7 changed files
with
406 additions
and
103 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,51 @@ | ||
ostree*.1 | ||
ostree*.5 | ||
*.lo | ||
*.o | ||
.deps | ||
.libs | ||
/*.bak | ||
/*.gcda | ||
/*.gcno | ||
/*.orig | ||
/*.rej | ||
/*.tab.c | ||
/*~ | ||
/.*.sw[nop] | ||
/.dirstamp | ||
/.gitignore | ||
/GPATH | ||
/GRTAGS | ||
/GSYMS | ||
/GTAGS | ||
/ID | ||
/Makefile | ||
/Makefile.in | ||
/TAGS | ||
/gtkdoc-check.test | ||
/html | ||
/html-build.stamp | ||
/html.stamp | ||
/ostree-decl-list.txt | ||
/ostree-decl.txt | ||
/ostree-undeclared.txt | ||
/ostree-undocumented.txt | ||
/ostree-unused.txt | ||
/ostree.args | ||
/ostree.hierarchy | ||
/ostree.interfaces | ||
/ostree.pdf | ||
/ostree.prerequisites | ||
/ostree.signals | ||
/ostree.types | ||
/pdf-build.stamp | ||
/pdf.stamp | ||
/scan-build.stamp | ||
/setup-build.stamp | ||
/sgml-build.stamp | ||
/sgml.stamp | ||
/so_locations | ||
/tags | ||
/tmpl | ||
/tmpl/*.bak | ||
/tmpl/ostree-unused.sgml | ||
/xml | ||
_libs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,3 +121,5 @@ EXTRA_DIST += \ | |
version.xml \ | ||
ostree-sections.txt \ | ||
$(NULL) | ||
|
||
-include $(top_srcdir)/git.mk |
Oops, something went wrong.