Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitignore
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
general
gitignore
Commits
8646963b
Commit
8646963b
authored
Nov 12, 2013
by
Jean Jordaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://github.com/github/gitignore
parents
43de8944
1a3b885e
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
66 additions
and
35 deletions
+66
-35
Android.gitignore
Android.gitignore
+4
-4
Django.gitignore
Django.gitignore
+0
-4
BricxCC.gitignore
Global/BricxCC.gitignore
+4
-0
Python.gitignore
Python.gitignore
+5
-0
Rails.gitignore
Rails.gitignore
+10
-3
Ruby.gitignore
Ruby.gitignore
+26
-15
Unity.gitignore
Unity.gitignore
+5
-5
VisualStudio.gitignore
VisualStudio.gitignore
+7
-2
Yii.gitignore
Yii.gitignore
+5
-2
No files found.
Android.gitignore
View file @
8646963b
...
@@ -12,12 +12,12 @@
...
@@ -12,12 +12,12 @@
bin/
bin/
gen/
gen/
# Ignore gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
# Local configuration file (sdk path, etc)
local.properties
local.properties
# Eclipse project files
.classpath
.project
# Proguard folder generated by Eclipse
# Proguard folder generated by Eclipse
proguard/
proguard/
Django.gitignore
deleted
100644 → 0
View file @
43de8944
*.log
*.pot
*.pyc
local_settings.py
Global/BricxCC.gitignore
0 → 100644
View file @
8646963b
# Bricx Command Center IDE
# http://bricxcc.sourceforge.net
*.bak
*.sym
Python.gitignore
View file @
8646963b
...
@@ -37,3 +37,8 @@ coverage.xml
...
@@ -37,3 +37,8 @@ coverage.xml
.mr.developer.cfg
.mr.developer.cfg
.project
.project
.pydevproject
.pydevproject
-# Django stuff:
-*.log
-*.pot
Rails.gitignore
View file @
8646963b
...
@@ -3,9 +3,6 @@
...
@@ -3,9 +3,6 @@
.sass-cache
.sass-cache
capybara-*.html
capybara-*.html
.rspec
.rspec
.rvmrc
/.bundle
/vendor/bundle
/log
/log
/tmp
/tmp
/db/*.sqlite3
/db/*.sqlite3
...
@@ -16,3 +13,13 @@ capybara-*.html
...
@@ -16,3 +13,13 @@ capybara-*.html
rerun.txt
rerun.txt
pickle-email-*.html
pickle-email-*.html
config/initializers/secret_token.rb
config/initializers/secret_token.rb
## Environment normalisation:
/.bundle
/vendor/bundle
# these should all be checked in to normalise the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
Ruby.gitignore
View file @
8646963b
*.gem
*.gem
*.rbc
*.rbc
.bundle
/.config
.config
/coverage/
coverage
/InstalledFiles
InstalledFiles
/pkg/
lib/bundler/man
/spec/reports/
pkg
/test/tmp/
rdoc
/test/version_tmp/
spec/reports
/tmp/
test/tmp
test/version_tmp
tmp
# YARD artifacts
## Documentation cache and generated files:
.yardoc
/.yardoc/
_yardoc
/_yardoc/
doc/
/doc/
/rdoc/
## Environment normalisation:
/.bundle/
/lib/bundler/man/
# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
Unity.gitignore
View file @
8646963b
...
@@ -3,8 +3,8 @@
...
@@ -3,8 +3,8 @@
[Oo]bj/
[Oo]bj/
# Autogenerated VS/MD solution and project files
# Autogenerated VS/MD solution and project files
*.csproj
/
*.csproj
*.unityproj
/
*.unityproj
*.sln
/
*.sln
*.suo
/
*.suo
*.user
/
*.user
VisualStudio.gitignore
View file @
8646963b
...
@@ -7,11 +7,11 @@
...
@@ -7,11 +7,11 @@
*.sln.docstates
*.sln.docstates
# Build results
# Build results
[Dd]ebug/
[Dd]ebug/
[Rr]elease/
[Rr]elease/
x64/
x64/
build/
build/
bld/
[Bb]in/
[Bb]in/
[Oo]bj/
[Oo]bj/
...
@@ -22,6 +22,10 @@ build/
...
@@ -22,6 +22,10 @@ build/
[Tt]est[Rr]esult*/
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
[Bb]uild[Ll]og.*
#NUNIT
*.VisualState.xml
TestResult.xml
*_i.c
*_i.c
*_p.c
*_p.c
*_i.h
*_i.h
...
@@ -100,13 +104,14 @@ publish/
...
@@ -100,13 +104,14 @@ publish/
# Publish Web Output
# Publish Web Output
*.Publish.xml
*.Publish.xml
*.azurePubxml
# NuGet Packages Directory
# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
#packages/
#packages/
# Windows Azure Build Output
# Windows Azure Build Output
csx
csx
/
*.build.csdef
*.build.csdef
# Windows Store app package directory
# Windows Store app package directory
...
...
Yii.gitignore
View file @
8646963b
assets/
assets/*
protected/runtime/
!assets/.gitignore
protected/runtime/*
!protected/runtime/.gitignore
protected/data/*.db
themes/classic/views/
themes/classic/views/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment