Merge remote-tracking branch 'github/master'
This commit is contained in:
commit
03bd371712
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
# http://www.gnu.org/software/automake
|
# http://www.gnu.org/software/automake
|
||||||
|
|
||||||
Makefile.in
|
Makefile.in
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
# compiled object files
|
# Compiled Object files
|
||||||
|
*.slo
|
||||||
|
*.lo
|
||||||
*.o
|
*.o
|
||||||
|
|
||||||
# compiled dynamic libraries
|
# Compiled Dynamic libraries
|
||||||
*.so
|
*.so
|
||||||
|
|
||||||
# compiled static libraries
|
# Compiled Static libraries
|
||||||
|
*.lai
|
||||||
|
*.la
|
||||||
*.a
|
*.a
|
||||||
|
12
CFWheels.gitignore
Normal file
12
CFWheels.gitignore
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# unpacked plugin folders
|
||||||
|
plugins/**/*
|
||||||
|
|
||||||
|
# files directory where uploads go
|
||||||
|
files
|
||||||
|
|
||||||
|
# DBMigrate plugin: generated SQL
|
||||||
|
db/sql
|
||||||
|
|
||||||
|
# AssetBundler plugin: generated bundles
|
||||||
|
javascripts/bundles
|
||||||
|
stylesheets/bundles
|
@ -5,3 +5,12 @@ _ReSharper*
|
|||||||
bin
|
bin
|
||||||
obj
|
obj
|
||||||
|
|
||||||
|
# user settings
|
||||||
|
*.user
|
||||||
|
*.suo
|
||||||
|
|
||||||
|
# if you have pictures, windows will likely create those annoying index files
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# mstest test results
|
||||||
|
TestResults
|
@ -2,4 +2,4 @@ tmp/*
|
|||||||
config/database.php
|
config/database.php
|
||||||
app/tmp/*
|
app/tmp/*
|
||||||
app/config/database.php
|
app/config/database.php
|
||||||
|
!empty
|
@ -1,4 +1,4 @@
|
|||||||
*/config/database.php
|
*/config/database.php
|
||||||
*/system/logs/log-*.php
|
*/system/logs/log-*.php
|
||||||
*/system/cache/*
|
*/system/cache/*
|
||||||
*/systen/cache/!index.html
|
*/system/cache/!index.html
|
||||||
|
4
Coq.gitignore
Normal file
4
Coq.gitignore
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
*.vo
|
||||||
|
*.glob
|
||||||
|
*.v.d
|
||||||
|
|
32
Drupal.gitignore
Normal file
32
Drupal.gitignore
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
sites/default/files
|
||||||
|
sites/default/private
|
||||||
|
sites/default/settings.php
|
||||||
|
cache/
|
||||||
|
files/
|
||||||
|
/README.txt
|
||||||
|
/CHANGELOG.txt
|
||||||
|
/COPYRIGHT.txt
|
||||||
|
/INSTALL*.txt
|
||||||
|
/LICENSE.txt
|
||||||
|
/MAINTAINERS.txt
|
||||||
|
/UPGRADE.txt
|
||||||
|
robots.txt
|
||||||
|
sites/all/README.txt
|
||||||
|
sites/all/modules/README.txt
|
||||||
|
sites/all/themes/README.txt
|
||||||
|
.htaccess
|
||||||
|
|
||||||
|
#for non core developer
|
||||||
|
#only include "sites" folder without exclusions before
|
||||||
|
cron.php
|
||||||
|
index.php
|
||||||
|
install.php
|
||||||
|
update.php
|
||||||
|
xmlrpc.php
|
||||||
|
/includes
|
||||||
|
/misc
|
||||||
|
/modules
|
||||||
|
/profiles
|
||||||
|
/scripts
|
||||||
|
/themes
|
||||||
|
|
15
ExpressionEngine.gitignore
Normal file
15
ExpressionEngine.gitignore
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Images
|
||||||
|
images/avatars/
|
||||||
|
images/captchas/
|
||||||
|
images/smileys/
|
||||||
|
images/member_photos/
|
||||||
|
images/signature_attachments/
|
||||||
|
images/pm_attachments/
|
||||||
|
|
||||||
|
# Caches
|
||||||
|
sized/
|
||||||
|
thumbs/
|
||||||
|
_thumbs/
|
||||||
|
*/expressionengine/cache/*
|
@ -1,5 +1,5 @@
|
|||||||
# it's better to unpack these files and commit the raw source
|
# It's better to unpack these files and commit the raw source because
|
||||||
# git has its own built in compression methods
|
# git has its own built in compression methods.
|
||||||
*.7z
|
*.7z
|
||||||
*.dmg
|
*.dmg
|
||||||
*.gz
|
*.gz
|
||||||
@ -9,4 +9,4 @@
|
|||||||
*.tar
|
*.tar
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
*.zip
|
*.zip
|
||||||
*.bzip
|
*.bzip
|
||||||
|
4
Global/CVS.gitignore
Normal file
4
Global/CVS.gitignore
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
/CVS/*
|
||||||
|
*/CVS/*
|
||||||
|
.cvsignore
|
||||||
|
*/.cvsignore
|
@ -2,3 +2,6 @@
|
|||||||
\#*\#
|
\#*\#
|
||||||
/.emacs.desktop
|
/.emacs.desktop
|
||||||
/.emacs.desktop.lock
|
/.emacs.desktop.lock
|
||||||
|
.elc
|
||||||
|
auto-save-list
|
||||||
|
tramp
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
.*
|
.*
|
||||||
|
!.gitignore
|
||||||
*~
|
*~
|
||||||
*.sw[a-p]
|
*.sw[a-p]
|
||||||
|
|
||||||
#KDE
|
# KDE
|
||||||
.directory
|
.directory
|
||||||
|
3
Global/Mercurial.gitignore
Normal file
3
Global/Mercurial.gitignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
/.hg/*
|
||||||
|
*/.hg/*
|
||||||
|
.hgignore
|
@ -1,9 +1,9 @@
|
|||||||
.DS_Store?
|
.DS_Store
|
||||||
Icon?
|
Icon?
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
|
|
||||||
# ack & vim swap files
|
# Files that might appear on external disk
|
||||||
.ackrc
|
.Spotlight-V100
|
||||||
*.swp
|
.Trashes
|
||||||
|
1
Global/SVN.gitignore
Normal file
1
Global/SVN.gitignore
Normal file
@ -0,0 +1 @@
|
|||||||
|
.svn/
|
3
Global/Tags.gitignore
Normal file
3
Global/Tags.gitignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Ignore tags created by etags and ctags
|
||||||
|
TAGS
|
||||||
|
tags
|
@ -1,2 +1,3 @@
|
|||||||
*.tmproj
|
*.tmproj
|
||||||
|
*.tmproject
|
||||||
tmtags
|
tmtags
|
||||||
|
@ -6,21 +6,56 @@
|
|||||||
*.user
|
*.user
|
||||||
|
|
||||||
# Build results
|
# Build results
|
||||||
Debug/
|
[Dd]ebug/
|
||||||
Release/
|
[Rr]elease/
|
||||||
*.ncb
|
*_i.c
|
||||||
*.aps
|
*_p.c
|
||||||
|
*.ilk
|
||||||
|
*.meta
|
||||||
*.obj
|
*.obj
|
||||||
|
*.pch
|
||||||
|
*.pdb
|
||||||
|
*.pgc
|
||||||
|
*.pgd
|
||||||
|
*.rsp
|
||||||
|
*.sbr
|
||||||
|
*.tlb
|
||||||
|
*.tli
|
||||||
|
*.tlh
|
||||||
|
*.tmp
|
||||||
|
*.vspscc
|
||||||
.builds
|
.builds
|
||||||
|
|
||||||
|
# Visual C++ cache files
|
||||||
|
ipch/
|
||||||
|
*.aps
|
||||||
|
*.ncb
|
||||||
|
*.opensdf
|
||||||
|
*.sdf
|
||||||
|
|
||||||
|
# Visual Studio profiler
|
||||||
|
*.psess
|
||||||
|
*.vsp
|
||||||
|
|
||||||
# ReSharper is a .NET coding add-in
|
# ReSharper is a .NET coding add-in
|
||||||
_ReSharper*
|
_ReSharper*
|
||||||
|
|
||||||
|
# DocProject is a documentation generator add-in
|
||||||
|
DocProject/buildhelp/
|
||||||
|
DocProject/Help/*.HxT
|
||||||
|
DocProject/Help/*.HxC
|
||||||
|
DocProject/Help/*.hhc
|
||||||
|
DocProject/Help/*.hhk
|
||||||
|
DocProject/Help/*.hhp
|
||||||
|
DocProject/Help/Html2
|
||||||
|
DocProject/Help/html
|
||||||
|
|
||||||
|
# Click-Once directory
|
||||||
|
publish
|
||||||
|
|
||||||
# Others
|
# Others
|
||||||
bin
|
[Bb]in
|
||||||
Bin
|
[Oo]bj
|
||||||
obj
|
|
||||||
Obj
|
|
||||||
sql
|
sql
|
||||||
TestResults
|
TestResults
|
||||||
*.Cache
|
*.Cache
|
||||||
@ -28,3 +63,4 @@ ClientBin
|
|||||||
stylecop.*
|
stylecop.*
|
||||||
~$*
|
~$*
|
||||||
*.dbmdl
|
*.dbmdl
|
||||||
|
Generated_Code #added for RIA/Silverlight projects
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#Windows images caches
|
# Windows image file caches
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
#Folder config file
|
# Folder config file
|
||||||
Desktop.ini
|
Desktop.ini
|
||||||
|
@ -1 +1,3 @@
|
|||||||
.*.sw[a-z]
|
.*.sw[a-z]
|
||||||
|
*.un~
|
||||||
|
Session.vim
|
||||||
|
5
Haskell.gitignore
Normal file
5
Haskell.gitignore
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
dist
|
||||||
|
*.o
|
||||||
|
*.hi
|
||||||
|
*.chi
|
||||||
|
*.chs.h
|
15
Jboss.gitignore
Normal file
15
Jboss.gitignore
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
jboss/server/all/deploy/project.ext
|
||||||
|
jboss/server/default/deploy/project.ext
|
||||||
|
jboss/server/minimal/deploy/project.ext
|
||||||
|
jboss/server/all/log/*.log
|
||||||
|
jboss/server/all/tmp/**/*
|
||||||
|
jboss/server/all/data/**/*
|
||||||
|
jboss/server/all/work/**/*
|
||||||
|
jboss/server/default/log/*.log
|
||||||
|
jboss/server/default/tmp/**/*
|
||||||
|
jboss/server/default/data/**/*
|
||||||
|
jboss/server/default/work/**/*
|
||||||
|
jboss/server/minimal/log/*.log
|
||||||
|
jboss/server/minimal/tmp/**/*
|
||||||
|
jboss/server/minimal/data/**/*
|
||||||
|
jboss/server/minimal/work/**/*
|
@ -1,6 +1,7 @@
|
|||||||
*.aux
|
*.aux
|
||||||
*.bbl
|
*.bbl
|
||||||
*.blg
|
*.blg
|
||||||
|
*.dvi
|
||||||
*.glg
|
*.glg
|
||||||
*.glo
|
*.glo
|
||||||
*.gls
|
*.gls
|
||||||
@ -8,10 +9,15 @@
|
|||||||
*.ilg
|
*.ilg
|
||||||
*.ind
|
*.ind
|
||||||
*.ist
|
*.ist
|
||||||
|
*.lof
|
||||||
*.log
|
*.log
|
||||||
|
*.lot
|
||||||
|
*.nlo
|
||||||
*.out
|
*.out
|
||||||
*.toc
|
*.toc
|
||||||
*.fdb_latexmk
|
*.fdb_latexmk
|
||||||
*.pdfsync
|
*.pdfsync
|
||||||
*.synctex.gz
|
*.synctex.gz
|
||||||
|
*.nav
|
||||||
|
*.snm
|
||||||
|
*.vrb
|
||||||
|
20
LemonStand.gitignore
Normal file
20
LemonStand.gitignore
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
boot.php
|
||||||
|
index.php
|
||||||
|
install.php
|
||||||
|
/config/*
|
||||||
|
!/config/config.php
|
||||||
|
/controllers/*
|
||||||
|
/init/*
|
||||||
|
/logs/*
|
||||||
|
/phproad/*
|
||||||
|
/temp/*
|
||||||
|
/uploaded/*
|
||||||
|
/installer_files/*
|
||||||
|
/modules/backend/*
|
||||||
|
/modules/blog/*
|
||||||
|
/modules/cms/*
|
||||||
|
/modules/core/*
|
||||||
|
/modules/session/*
|
||||||
|
/modules/shop/*
|
||||||
|
/modules/system/*
|
||||||
|
/modules/users/*
|
6
Lilypond.gitignore
Normal file
6
Lilypond.gitignore
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
*.pdf
|
||||||
|
*.ps
|
||||||
|
*.midi
|
||||||
|
*.mid
|
||||||
|
*.log
|
||||||
|
*~
|
9
OCaml.gitignore
Normal file
9
OCaml.gitignore
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
*.annot
|
||||||
|
*.cmo
|
||||||
|
*.cma
|
||||||
|
*.cmi
|
||||||
|
*.a
|
||||||
|
*.o
|
||||||
|
*.cmx
|
||||||
|
*.cmxs
|
||||||
|
*.cmxa
|
@ -1,4 +1,4 @@
|
|||||||
# xcode
|
# Xcode
|
||||||
build/*
|
build/*
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
!default.pbxuser
|
!default.pbxuser
|
||||||
|
15
PlayFramework.gitignore
Normal file
15
PlayFramework.gitignore
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Extracted from https://github.com/ulrich/macaron-factory/blob/master/.gitignore
|
||||||
|
# Ignore all dotfiles...
|
||||||
|
.*
|
||||||
|
# except for .gitignore
|
||||||
|
!.gitignore
|
||||||
|
|
||||||
|
# Ignore Play! working directory #
|
||||||
|
db
|
||||||
|
eclipse
|
||||||
|
log
|
||||||
|
logs
|
||||||
|
tmp
|
||||||
|
test-result
|
||||||
|
eclipse
|
||||||
|
server.pid
|
5
Qooxdoo.gitignore
Normal file
5
Qooxdoo.gitignore
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
cache
|
||||||
|
cache-downloads
|
||||||
|
inspector
|
||||||
|
api
|
||||||
|
source/inspector.html
|
@ -12,3 +12,6 @@ capybara-*.html
|
|||||||
/coverage/
|
/coverage/
|
||||||
/spec/tmp/*
|
/spec/tmp/*
|
||||||
**.orig
|
**.orig
|
||||||
|
config/*.yml
|
||||||
|
rerun.txt
|
||||||
|
pickle-email-*.html
|
15
SeamGen.gitignore
Normal file
15
SeamGen.gitignore
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/bootstrap/data
|
||||||
|
/bootstrap/tmp
|
||||||
|
/classes/ # all class files
|
||||||
|
/dist/ # contains generated war files for deployment
|
||||||
|
/exploded-archives/ # war content generation during deploy (or explode)
|
||||||
|
/test-build/ # test compilation (ant target for Seam)
|
||||||
|
/test-output/ # test results
|
||||||
|
/test-report/ # test report generation for, e.g., Hudson
|
||||||
|
/target/ # maven output folder
|
||||||
|
temp-testng-customsuite.xml # generated when running test cases under Eclipse
|
||||||
|
|
||||||
|
# Thanks to @VonC and @kraftan for their helpful answers on a related question
|
||||||
|
# on StackOverflow.com:
|
||||||
|
# http://stackoverflow.com/questions/4176687
|
||||||
|
# /what-is-the-recommended-source-control-ignore-pattern-for-seam-projects
|
@ -4,3 +4,8 @@ web/uploads/*
|
|||||||
config/databases.yml
|
config/databases.yml
|
||||||
config/propel.ini
|
config/propel.ini
|
||||||
data/sql
|
data/sql
|
||||||
|
lib/filter/doctrine/base/Base*
|
||||||
|
lib/form/doctrine/base/Base*
|
||||||
|
lib/model/doctrine/base/Base*
|
||||||
|
lib/model/om/*
|
||||||
|
lib/model/map/*
|
4
Symfony2.gitignore
Normal file
4
Symfony2.gitignore
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
*/logs/*
|
||||||
|
*/cache/*
|
||||||
|
web/uploads/*
|
||||||
|
web/bundles/*
|
11
Tasm.gitignore
Normal file
11
Tasm.gitignore
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# Object Files
|
||||||
|
*.OBJ
|
||||||
|
|
||||||
|
# List Files
|
||||||
|
*.LST
|
||||||
|
|
||||||
|
# Map files
|
||||||
|
*.MAP
|
||||||
|
|
||||||
|
# Executable files
|
||||||
|
*.EXE
|
11
VB.Net.gitignore
Normal file
11
VB.Net.gitignore
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# Build and Object Folders
|
||||||
|
bin/
|
||||||
|
obj/
|
||||||
|
|
||||||
|
#User Specific Files
|
||||||
|
*.user
|
||||||
|
*.suo
|
||||||
|
|
||||||
|
#Resource Caches
|
||||||
|
_ReSharper.*
|
||||||
|
*.sln.cache
|
3
Waf.gitignore
Normal file
3
Waf.gitignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# for projects that use Waf for building: http://code.google.com/p/waf/
|
||||||
|
.waf-*
|
||||||
|
.lock-*
|
11
Wordpress.gitignore
Normal file
11
Wordpress.gitignore
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
.htaccess
|
||||||
|
wp-config.php
|
||||||
|
wp-content/backup-db/*
|
||||||
|
wp-content/cache/*
|
||||||
|
wp-content/cache/supercache/*
|
||||||
|
wp-content/upgrade/*
|
||||||
|
wp-content/advanced-cache.php
|
||||||
|
wp-content/wp-cache-config.php
|
||||||
|
wp-content/uploads/
|
||||||
|
sitemap.xml
|
||||||
|
sitemap.xml.gz
|
3
Yii.gitignore
Normal file
3
Yii.gitignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
assets/
|
||||||
|
protected/runtime/
|
||||||
|
themes/classic/views/
|
6
ZendFramework.gitignore
Normal file
6
ZendFramework.gitignore
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
INSTALL.txt
|
||||||
|
LICENSE.txt
|
||||||
|
README.txt
|
||||||
|
demos/
|
||||||
|
extras/documentation
|
||||||
|
|
5
gcov.gitignore
Normal file
5
gcov.gitignore
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# gcc coverage testing tool files
|
||||||
|
|
||||||
|
*.gcno
|
||||||
|
*.gcda
|
||||||
|
*.gcov
|
Loading…
Reference in New Issue
Block a user