Skip to content

Commit 84f34a6

Browse files
committed
Merge remote branch 'upstream/master'
* upstream/master: added Waf.gitignore Don't ignore empty files meant to preserve the file structure of an application within a git repository for later deployment Ignore files generated by Etags and Ctags Performance Sessions & Reports. Visual C++ additions. Added ignore patterns for projects generated using seam-gen add Coq gitignore dont track compiled elisp Added a VB.Net gitignore Added to Drupal.gitignore add "*.tmproject" to ignore list Added patterns for LaTeX Beamer Add in rules for WP Super Cache, Google XML Sitemaps, and WP-DBManager plugins. Add OCaml gitignore Add CVS gitignore for anyone who has to code-share with projects using CVS. Save the dinosaurs. Add SVN gitignore for anyone who has to code-share with projects using Subversion Fix typo in CodeIgniter gitignore Added Drupal gitignore.
2 parents 8be7617 + 9abdee4 commit 84f34a6

16 files changed

+95
-5
lines changed

CakePHP.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ tmp/*
22
config/database.php
33
app/tmp/*
44
app/config/database.php
5-
5+
!empty

CodeIgniter.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*/config/database.php
22
*/system/logs/log-*.php
33
*/system/cache/*
4-
*/systen/cache/!index.html
4+
*/system/cache/!index.html

Coq.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.vo
2+
*.glob
3+
*.v.d
4+

Drupal.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
sites/default/files
2+
sites/default/private
3+
sites/default/settings.php
4+
cache/
5+
files/
6+
settings.php
7+
/README.txt
8+
/CHANGELOG.txt
9+
/COPYRIGHT.txt
10+
/INSTALL*.txt
11+
/LICENSE.txt
12+
/MAINTAINERS.txt
13+
/UPGRADE.txt
14+
sites/all/README.txt
15+
sites/all/modules/README.txt
16+
sites/all/themes/README.txt

Global/CVS.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/CVS/*
2+
*/CVS/*
3+
.cvsignore
4+
*/.cvsignore

Global/Emacs.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
\#*\#
33
/.emacs.desktop
44
/.emacs.desktop.lock
5+
.elc
6+
auto-save-list
7+
tramp

Global/SVN.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.svn/*
2+
*/.svn/*

Global/Tags.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Ignore tags created by etags and ctags
2+
TAGS
3+
tags

Global/TextMate.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.tmproj
2+
*.tmproject
23
tmtags

Global/VisualStudio.gitignore

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,20 @@
88
# Build results
99
Debug/
1010
Release/
11-
*.ncb
12-
*.aps
1311
*.obj
1412
.builds
1513

14+
# Visual C++ cache files
15+
ipch/
16+
*.aps
17+
*.ncb
18+
*.opensdf
19+
*.sdf
20+
21+
# Visual Studio profiler
22+
*.psess
23+
*.vsp
24+
1625
# ReSharper is a .NET coding add-in
1726
_ReSharper*
1827

0 commit comments

Comments
 (0)