]> source.dussan.org Git - gitignore.git/log
gitignore.git
9 years agoadd .eggs/ directory to Python.gitignore 1391/head
Stephan Kuschel [Mon, 2 Feb 2015 21:46:23 +0000 (22:46 +0100)]
add .eggs/ directory to Python.gitignore

9 years agoMerge pull request #1382 from github/revert-1343-master
Carl Suster [Sat, 24 Jan 2015 04:44:28 +0000 (15:44 +1100)]
Merge pull request #1382 from github/revert-1343-master

Revert "Ignore npm-debug.log"

9 years agoRevert "Ignore npm-debug.log" 1382/head 1572/head
Carl Suster [Sat, 24 Jan 2015 04:43:52 +0000 (15:43 +1100)]
Revert "Ignore npm-debug.log"

9 years agoMerge pull request #1282 from andres-mancera/synopsys_vcs
Carl Suster [Thu, 22 Jan 2015 06:25:09 +0000 (17:25 +1100)]
Merge pull request #1282 from andres-mancera/synopsys_vcs

Adding gitignore file for Synopsys VCS simulator.

9 years agoMoving SynopsysVCS.gitignore into Global/. 1282/head
andres-mancera [Thu, 22 Jan 2015 04:45:09 +0000 (20:45 -0800)]
Moving SynopsysVCS.gitignore into Global/.
Whether to use VCS or any other simulator is a choice of the individual designer rather than of the project as a whole.

9 years agoMerge pull request #1319 from mviranyi/master
Carl Suster [Thu, 22 Jan 2015 03:27:34 +0000 (14:27 +1100)]
Merge pull request #1319 from mviranyi/master

Unity3D - Cache files, solution settings files and meta file update

9 years agoMerge pull request #1262 from janno-p/master
Carl Suster [Thu, 22 Jan 2015 03:24:34 +0000 (14:24 +1100)]
Merge pull request #1262 from janno-p/master

User-specific files for MonoDevelop/Xamarin Studio.

9 years agoMerge pull request #1378 from rafaelstz/patch-4
Carl Suster [Thu, 22 Jan 2015 03:15:49 +0000 (14:15 +1100)]
Merge pull request #1378 from rafaelstz/patch-4

Setup of the development environment.

9 years agoOnly .htaccess.sample 1378/head
Rafael Corrêa Gomes [Thu, 22 Jan 2015 01:37:22 +0000 (23:37 -0200)]
Only .htaccess.sample

9 years agoMerge pull request #1365 from geoffschoeman/master
Carl Suster [Thu, 22 Jan 2015 00:36:49 +0000 (11:36 +1100)]
Merge pull request #1365 from geoffschoeman/master

Add Google App Engine generated folder

9 years agoMerge pull request #1376 from rafaelstz/patch-2
Carl Suster [Thu, 22 Jan 2015 00:22:49 +0000 (11:22 +1100)]
Merge pull request #1376 from rafaelstz/patch-2

Base path to placeholder images

9 years agoSetup of the development environment.
Rafael Corrêa Gomes [Wed, 21 Jan 2015 21:45:11 +0000 (19:45 -0200)]
Setup of the development environment.

The .htaccess settings depend on the development environment, in some cases it is not used.

9 years agoBase path to placeholder images 1376/head
Rafael Corrêa Gomes [Wed, 21 Jan 2015 21:26:49 +0000 (19:26 -0200)]
Base path to placeholder images

Base is media/catalog/product/placeholder/default/ and media/catalog/product/placeholder/my-theme/ new placeholder set on admin.

9 years agoRemoving the last two lines since they are editor-specific (Namely, VI and Emacs).
andres-mancera [Wed, 21 Jan 2015 18:00:29 +0000 (10:00 -0800)]
Removing the last two lines since they are editor-specific (Namely, VI and Emacs).
As Carl has pointed out, they are covered by other templates under Global/.

9 years agoMerge pull request #1373 from wafiq/patch-1
Carl Suster [Wed, 21 Jan 2015 08:48:19 +0000 (19:48 +1100)]
Merge pull request #1373 from wafiq/patch-1

Typo in comment

9 years agoTypo in comment 1373/head
Wafiq Rodzuan [Wed, 21 Jan 2015 08:30:32 +0000 (16:30 +0800)]
Typo in comment

I know this is petty, but imagine thousand upon thousand of corrective commits saved by fixing the typo right into the heart of the file.

9 years agoMerge pull request #1364 from nwest/swift-carthage
Carl Suster [Fri, 16 Jan 2015 04:47:52 +0000 (15:47 +1100)]
Merge pull request #1364 from nwest/swift-carthage

Add Carthage build folder and explaination

9 years agoAdded template for Google App Engine 1365/head
Geoff Schoeman [Fri, 16 Jan 2015 00:05:19 +0000 (19:05 -0500)]
Added template for Google App Engine

9 years agoAdd Carthage build folder and explaination 1364/head
Nate West [Thu, 15 Jan 2015 16:28:08 +0000 (11:28 -0500)]
Add Carthage build folder and explaination

9 years agoMerge Pull Request #1338 for Eclipse
Carl Suster [Thu, 15 Jan 2015 00:41:35 +0000 (11:41 +1100)]
Merge Pull Request #1338 for Eclipse

Fixes #1217.

Once again ignore .classpath and .project in the Eclipse template. This has
been requested in multiple PRs such as #1338 and #1221 and is essentially a
reversion of #805. I copy the explanation for this change from the discussion
in #1217 by @segfly:

*In short*:

I can't point to any counter-documentation off the top of my head. I just know
from experience these files pollute a project's repo without adding value
- that is, unless everyone contributing is using Eclipse and no-one is using
dependency management. And even then, the guidance provided by the eclipse docs
is bad advice.

*In Long*:

The .classpath file is used by Eclipse to maintain the project's classpath
during automatic compile (every save of a file). In the olden days, one would
manually configure the project within the Eclipse UI and include all the
dependent jars necessary to compile your project. Eclipse then wrote that
configuration out to the .classpath file.

In theory, this file could be shared with others so they did not have to
manually configure their eclipse classpath. In practice, I never saw it work
out quite so well due to eventual bloating of the classpath with needless jars
or jars that only existed on one person's machine. Mind you, many people back
then also used to check their dependent jars into version control along with
their source.

Dependency management tools like Gradle and Maven have done away with all that
of course. But they also integrate nicely with Eclipse and manage the project
classpath dynamically. The .classpath file is basically rebuilt based on
changes to the build.gradle file or pom.xml file. Effectively, this renders the
whole point of checking in the .classpath moot as it is easily rebuilt by the
Maven or Gradle plugin.

The .project file is another animal completely. It basically describes what
plugins should be applied to the project as configured in the Eclipse UI. Again
the theory is it could be shared and creates a happy world. But due to
different eclipse versions people may have, different plugins installed, etc.
sharing the .project file actually causes more issues. And I've seen many
projects unable to open due to a bad .project file - requiring one to delete it
anyway (which then of course, when someone recreates it, they inevitably check
it in over the old one and end up breaking someone else's environment).

The bottom line is, regardless of what the eclipse documentation says, these
are very much internal configuration files for eclipse and best left out of
a repo.

9 years agoMerge pull request #1285 from paolofulgoni/gradle-wrapper
Carl Suster [Thu, 15 Jan 2015 00:29:23 +0000 (11:29 +1100)]
Merge pull request #1285 from paolofulgoni/gradle-wrapper

Avoid ignoring Gradle wrapper jar file

9 years agoMerge pull request #1306 from Hillkorn/patch-1
Carl Suster [Wed, 14 Jan 2015 01:17:31 +0000 (12:17 +1100)]
Merge pull request #1306 from Hillkorn/patch-1

Added missing gradle netbeans directory

9 years agoMerge pull request #1353 from mbaltaks/patch-1
Carl Suster [Wed, 14 Jan 2015 01:11:40 +0000 (12:11 +1100)]
Merge pull request #1353 from mbaltaks/patch-1

Ignore the pip self check marker file in a Virtualenv.

9 years agoMerge pull request #1362 from stevelacy/master
Carl Suster [Wed, 14 Jan 2015 00:55:05 +0000 (11:55 +1100)]
Merge pull request #1362 from stevelacy/master

Add .Trash-* to ignore Linux partition or ext disk trash folders

9 years agoMerge pull request #1359 from masgo/master
Carl Suster [Wed, 14 Jan 2015 00:51:49 +0000 (11:51 +1100)]
Merge pull request #1359 from masgo/master

Update TeX.gitignore

9 years agoadd .Trash-* to ignore Linux partition or ext disk trash folders 1362/head
Steve Lacy [Tue, 13 Jan 2015 22:31:58 +0000 (15:31 -0700)]
add .Trash-* to ignore Linux partition or ext disk trash folders

9 years agoUpdate TeX.gitignore 1359/head
Rob [Tue, 13 Jan 2015 08:40:43 +0000 (09:40 +0100)]
Update TeX.gitignore

*.synctex is generated when the synctex option is used under Windows.

9 years agoIgnore the pip self check marker file in a Virtualenv. 1353/head
Michael Baltaks [Sat, 10 Jan 2015 06:49:44 +0000 (17:49 +1100)]
Ignore the pip self check marker file in a Virtualenv.

9 years agoMerge pull request #1311 from rafaelstz/patch-1
Carl Suster [Thu, 8 Jan 2015 01:55:10 +0000 (12:55 +1100)]
Merge pull request #1311 from rafaelstz/patch-1

root sitemap.xml

9 years agoMerge pull request #1344 from tral/master
Carl Suster [Thu, 8 Jan 2015 01:49:27 +0000 (12:49 +1100)]
Merge pull request #1344 from tral/master

Built application files (for Android Studio projects)

9 years agoMerge pull request #1349 from MOROZILnic/patch-1
Carl Suster [Thu, 8 Jan 2015 01:48:38 +0000 (12:48 +1100)]
Merge pull request #1349 from MOROZILnic/patch-1

Update VisualStudio.gitignore

9 years agomoved 1344/head
tralchonok [Wed, 7 Jan 2015 14:10:23 +0000 (19:40 +0530)]
moved

9 years agoMerge pull request #1257 from sidewinder94/patch-1
Carl Suster [Wed, 7 Jan 2015 05:58:02 +0000 (16:58 +1100)]
Merge pull request #1257 from sidewinder94/patch-1

Ignoring Pow environment settings (Rails)

9 years agoMerge pull request #1303 from vladon/master
Carl Suster [Wed, 7 Jan 2015 05:54:53 +0000 (16:54 +1100)]
Merge pull request #1303 from vladon/master

Added Castalia *.stat files

9 years agoMerge pull request #1288 from cake17/add-cakephp3
Carl Suster [Wed, 7 Jan 2015 05:42:23 +0000 (16:42 +1100)]
Merge pull request #1288 from cake17/add-cakephp3

add rules for new CakePHP 3

9 years agoMerge pull request #1286 from adamliter/master
Carl Suster [Wed, 7 Jan 2015 05:41:23 +0000 (16:41 +1100)]
Merge pull request #1286 from adamliter/master

Ignore some auxiliary files from knitr

9 years agoMerge pull request #1343 from jenrik/master
Carl Suster [Wed, 7 Jan 2015 05:35:36 +0000 (16:35 +1100)]
Merge pull request #1343 from jenrik/master

Ignore npm-debug.log

9 years agoMerge pull request #1253
Carl Suster [Wed, 7 Jan 2015 05:31:03 +0000 (16:31 +1100)]
Merge pull request #1253

Some visual Studio 6 specific file types. See documentation at:
http://msdn.microsoft.com/en-us/library/aa260829(v=vs.60).aspx
http://msdn.microsoft.com/en-us/library/aa239568(v=vs.60).aspx

Closes #1253 with amendments

9 years agoMerge pull request #1333 from adamrights/feature/redis
Carl Suster [Wed, 7 Jan 2015 05:18:53 +0000 (16:18 +1100)]
Merge pull request #1333 from adamrights/feature/redis

Add a global redis ignore file.

9 years agoMerge pull request #1308 from ovanschie/patch-1
Carl Suster [Wed, 7 Jan 2015 05:17:11 +0000 (16:17 +1100)]
Merge pull request #1308 from ovanschie/patch-1

Update for Magento 1.9.1

9 years agoMerge pull request #1305 from carlodri/patch-1
Carl Suster [Wed, 7 Jan 2015 05:09:54 +0000 (16:09 +1100)]
Merge pull request #1305 from carlodri/patch-1

Create IGORPro.gitignore

9 years agoMerge pull request #1312 from rogersuen/global-jdev
Carl Suster [Wed, 7 Jan 2015 05:08:04 +0000 (16:08 +1100)]
Merge pull request #1312 from rogersuen/global-jdev

Global JDeveloper.gitignore

9 years agoMerge pull request #1163 from ma499/nodejs-visualstudio
Carl Suster [Wed, 7 Jan 2015 04:34:23 +0000 (15:34 +1100)]
Merge pull request #1163 from ma499/nodejs-visualstudio

Ignore analysis files from Node.js tools for Visual Studio 2013

9 years agoMerge pull request #1226 from dmbaturin/master
Carl Suster [Wed, 7 Jan 2015 04:25:21 +0000 (15:25 +1100)]
Merge pull request #1226 from dmbaturin/master

Add ocamlbuild and oasis generated files to OCaml .gitignore

9 years agoMerge pull request #1342 from adelq/master
Carl Suster [Wed, 7 Jan 2015 04:24:24 +0000 (15:24 +1100)]
Merge pull request #1342 from adelq/master

Create Nim.gitignore

9 years agoMerge pull request #1346 from ldrumm/master
Carl Suster [Wed, 7 Jan 2015 04:21:13 +0000 (15:21 +1100)]
Merge pull request #1346 from ldrumm/master

Added a .gitignore template for Lua based projects.

9 years agoCapitalise initial letter in template filenames for consistency/sorting
Carl Suster [Wed, 7 Jan 2015 04:16:27 +0000 (15:16 +1100)]
Capitalise initial letter in template filenames for consistency/sorting

9 years agoMerge pull request #1350 from julianpistorius/patch-1
Carl Suster [Wed, 7 Jan 2015 04:11:27 +0000 (15:11 +1100)]
Merge pull request #1350 from julianpistorius/patch-1

Should "boostrap.json" be "bootstrap.json"?

9 years agoShould "boostrap.json" be "bootstrap.json"? 1350/head
Julian Pistorius [Wed, 7 Jan 2015 00:11:00 +0000 (17:11 -0700)]
Should "boostrap.json" be "bootstrap.json"?

And what about the other bootstrap.* files?

9 years agoUpdate Unity.gitignore 1319/head
Matthias Viranyi [Mon, 5 Jan 2015 13:27:24 +0000 (14:27 +0100)]
Update Unity.gitignore

And removes the last new line.

9 years agoUpdate Unity.gitignore
Matthias Viranyi [Mon, 5 Jan 2015 13:18:30 +0000 (14:18 +0100)]
Update Unity.gitignore

Removes queried extensions.

9 years agoUpdate VisualStudio.gitignore 1349/head
MOROZILnic [Sun, 4 Jan 2015 19:17:12 +0000 (22:17 +0300)]
Update VisualStudio.gitignore

Ignoring *.cache as well as *.Cache

9 years agorearrange rules for CakePHP 2 1288/head
cake17 [Sun, 4 Jan 2015 14:44:47 +0000 (15:44 +0100)]
rearrange rules for CakePHP 2

9 years agoAdded a .gitignore template for Lua based projects. 1346/head
Luke Drummond [Sat, 3 Jan 2015 17:12:56 +0000 (17:12 +0000)]
Added a .gitignore template for Lua based projects.

Added common ignore globs for Lua, an extensible, high-performace, lightweight multi-paradigm language designed for embedded scripting.

    http://www.lua.org/about.html (More info at https://en.wikipedia.org/wiki/Lua_(programming_language) )

The de-facto package manager for Lua is LuaRocks.

   http://luarocks.org/

- LuaRocks creates a number of files as part of the build process.  These are ignored (*.src.rock, *.tar.gz, *.zip)
- Lua modules are conventionally written in C as shared libraries.  Common build artifacts for C projects copied from C.gitignore

9 years ago# Built application files (for Android Studio projects)
tralchonok [Fri, 2 Jan 2015 16:38:47 +0000 (22:08 +0530)]
# Built application files (for Android Studio projects)

9 years agoIgnore npm-debug.log 1343/head
Jenrik [Fri, 2 Jan 2015 00:38:25 +0000 (01:38 +0100)]
Ignore npm-debug.log

Debug log from npm is now ignored

9 years agoCreate Nim.gitignore 1342/head
Adel Qalieh [Tue, 30 Dec 2014 22:23:11 +0000 (17:23 -0500)]
Create Nim.gitignore

9 years agoAdded Eclipse JDT .classpath file, and the Eclipse core .project file to 1338/head
Nicholas Pace [Sat, 27 Dec 2014 03:23:09 +0000 (22:23 -0500)]
Added Eclipse JDT .classpath file, and the Eclipse core .project file to
template

9 years agoMerge pull request #1325 from aurmil/magento-modman
Carl Suster [Tue, 23 Dec 2014 10:01:34 +0000 (21:01 +1100)]
Merge pull request #1325 from aurmil/magento-modman

Ignore Magento .modman directory

9 years agoMerge pull request #1218 from bbodenmiller/patch-3
Carl Suster [Tue, 23 Dec 2014 00:56:45 +0000 (11:56 +1100)]
Merge pull request #1218 from bbodenmiller/patch-3

update comment on ignoring repositories.config

9 years agoMerge pull request #1323 from aurmil/magento-root-files
Carl Suster [Tue, 23 Dec 2014 00:36:07 +0000 (11:36 +1100)]
Merge pull request #1323 from aurmil/magento-root-files

Fix Magento PHP root files names patterns

9 years agoAdd a global redis ignore file. 1333/head
bedella [Mon, 22 Dec 2014 22:08:52 +0000 (17:08 -0500)]
Add a global redis ignore file.

Ignores all .rdb files, (default: dump.rdb).

These files contain a binary representation of the in-memory
redis data that is generated using cli tools or on a redis
failure.

They can be used to restore a redis db, and may contain
sensitive data so should not be saved in version control.

9 years agoMerge pull request #1327 from lighght/patch-1
Carl Suster [Sun, 21 Dec 2014 04:08:13 +0000 (15:08 +1100)]
Merge pull request #1327 from lighght/patch-1

add ignore achemso bib file (acs-*.bib) to TeX.gitignore

9 years agoAdd ignore achemso aux file acs-<tex filename>.bib 1327/head
lighght [Sat, 20 Dec 2014 16:57:43 +0000 (11:57 -0500)]
Add ignore achemso aux file acs-<tex filename>.bib

Ignore acs-*.bib, an aux file generated by \documentclass{achemso} or by \usepackage{achemso}

9 years agoIgnore modman directory 1325/head
Aurélien Millet [Wed, 17 Dec 2014 10:18:05 +0000 (11:18 +0100)]
Ignore modman directory

9 years agofix magento root files 1323/head
Aurélien Millet [Tue, 16 Dec 2014 10:37:27 +0000 (11:37 +0100)]
fix magento root files

without leading slash, it ignores all files with these names (cron.php,
get.php, index.php, api.php), whereveer they are

9 years agoAdds forgotten UnityVS / VS2013 related solution files.
Matthias Viranyi [Fri, 12 Dec 2014 13:26:12 +0000 (14:26 +0100)]
Adds forgotten UnityVS / VS2013 related solution files.

9 years agoAdds several annoying files to Unity3D ignore file, like platform cache files (Mac...
Matthias Viranyi [Fri, 12 Dec 2014 13:04:48 +0000 (14:04 +0100)]
Adds several annoying files to Unity3D ignore file, like platform cache files (Mac + Windows), the famous Unity3D pidb.meta

9 years agoMerge pull request #1317 from arkeidolon/patch-1
Carl Suster [Fri, 12 Dec 2014 05:03:20 +0000 (16:03 +1100)]
Merge pull request #1317 from arkeidolon/patch-1

Add space at Unity gitignore comment

9 years agoAdd space at Unity gitignore comment 1317/head
Clarke Plumo [Fri, 12 Dec 2014 02:25:22 +0000 (10:25 +0800)]
Add space at Unity gitignore comment

9 years agoMerge pull request #1315 from bbodenmiller/patch-4
Brendan Forster [Fri, 12 Dec 2014 02:21:58 +0000 (12:51 +1030)]
Merge pull request #1315 from bbodenmiller/patch-4

VisualStudio.gitignore: no good reason to ignore sql folder

9 years agono good reason to ignore sql folder 1315/head
Ben Bodenmiller [Thu, 11 Dec 2014 23:21:38 +0000 (15:21 -0800)]
no good reason to ignore sql folder

9 years agoMerge pull request #1307 from Frozenfire92/patch-1
Carl Suster [Thu, 11 Dec 2014 14:54:23 +0000 (01:54 +1100)]
Merge pull request #1307 from Frozenfire92/patch-1

Unity: Fix solution/project files for nested directories.

9 years agodoc JDeveloper.gitignore 1312/head
Roger Suen [Tue, 9 Dec 2014 22:50:42 +0000 (06:50 +0800)]
doc JDeveloper.gitignore

9 years agoadded depoy/ and javadoc/ to JDeveloper.gitignore
Roger Suen [Tue, 9 Dec 2014 22:21:26 +0000 (06:21 +0800)]
added depoy/ and javadoc/ to JDeveloper.gitignore

9 years agoroot sitemap.xml 1311/head
Rafael Corrêa Gomes [Tue, 9 Dec 2014 00:23:35 +0000 (22:23 -0200)]
root sitemap.xml

The Magento production is configured to automatically generate the sitemap.xml, as is the url is taken as a base, it is important to be ignored.

9 years agoUpdate for Magento 1.9.1 1308/head
Olav van Schie [Fri, 5 Dec 2014 09:34:36 +0000 (10:34 +0100)]
Update for Magento 1.9.1

Added Configurable Swatches and Pelago lib to ignore list

9 years agoFix solution/project files for nested directories. 1307/head
Joel Kuntz [Fri, 5 Dec 2014 01:43:44 +0000 (21:43 -0400)]
Fix solution/project files for nested directories.

By having the leading `/` infront of the `*` makes these types of files relative to the directory the gitignore is in. If you create a Unity project inside of a git directory Unity forces you to create a new directory, thus not picking up these files.

9 years agoAdded missing gradle netbeans directory 1306/head
Dennis Schumann [Thu, 4 Dec 2014 16:43:52 +0000 (17:43 +0100)]
Added missing gradle netbeans directory

9 years agoCreate IGORPro.gitignore 1305/head
Carlo Dri [Wed, 3 Dec 2014 10:33:11 +0000 (11:33 +0100)]
Create IGORPro.gitignore

.gitignore template file for repositories of Wavemetrics IGOR Pro functions (.ipf files).

9 years agoAdded Castalia *.stat files 1303/head
Vladislav Yaroslavlev [Mon, 1 Dec 2014 20:08:13 +0000 (23:08 +0300)]
Added Castalia *.stat files

Castalia is a free plugin for Delphi since XE7. It uses *.stat files to
save statistics of the IDE usage for each project (compile time, debug
time etc.)

It is safe to delete it, and it is useless to move *.stat files between
developers (each developer has its own IDE statistics).

9 years agoMerge pull request #1290 from djboni/master
Carl Suster [Mon, 1 Dec 2014 03:05:59 +0000 (14:05 +1100)]
Merge pull request #1290 from djboni/master

Add LibreOffice.gitignore

9 years agoMerge pull request #1284 from jakepetroules/patch-1
Carl Suster [Sat, 29 Nov 2014 05:51:59 +0000 (16:51 +1100)]
Merge pull request #1284 from jakepetroules/patch-1

Ignore Qt Creator cache files for Qbs projects.

9 years agoMerge pull request #1263 from jangorecki/master
Carl Suster [Sat, 29 Nov 2014 04:38:28 +0000 (15:38 +1100)]
Merge pull request #1263 from jangorecki/master

R.gitignore - exclude vignettes products

9 years agoMerge pull request #1280 from renhx/rails-sqlite3-journal
Carl Suster [Sat, 29 Nov 2014 04:36:40 +0000 (15:36 +1100)]
Merge pull request #1280 from renhx/rails-sqlite3-journal

Added *.sqlite3-journal to Rails.gitignore

9 years agoMerge pull request #1293 from marcelkorpel/master
Carl Suster [Sat, 29 Nov 2014 04:26:19 +0000 (15:26 +1100)]
Merge pull request #1293 from marcelkorpel/master

Add .SRCINFO

9 years agoMerge pull request #1298 from adamliter/r
Carl Suster [Sat, 29 Nov 2014 04:19:44 +0000 (15:19 +1100)]
Merge pull request #1298 from adamliter/r

Add history file that is generated by R.app for Mac OS

9 years agoAdd history file that is generated by R.app for Mac OS 1298/head
Adam Liter [Fri, 28 Nov 2014 00:36:15 +0000 (18:36 -0600)]
Add history file that is generated by R.app for Mac OS

9 years agoMerge pull request #1292 from taspeotis/master
Brendan Forster [Sun, 23 Nov 2014 23:22:50 +0000 (09:52 +1030)]
Merge pull request #1292 from taspeotis/master

Revert "adding entry for ignoring <solutionname>.sln.ide folder which contains visual studio 2015 solution specific cache data"

9 years agoAdd .SRCINFO 1293/head
Marcel Korpel [Sun, 23 Nov 2014 15:59:38 +0000 (16:59 +0100)]
Add .SRCINFO

See https://lists.archlinux.org/pipermail/aur-dev/2014-November/002968.html

9 years agoRevert "adding entry for ignoring <solutionname>.sln.ide folder which contains visual... 1292/head
Todd Aspeotis [Sun, 23 Nov 2014 05:41:09 +0000 (15:41 +1000)]
Revert "adding entry for ignoring <solutionname>.sln.ide folder which contains visual studio 2015 solution specific cache data"

This reverts commit b07a0904e3c0714353f997b1dc6122b367dab648.

9 years agoMove LibreOffice.gitignore to /Global 1290/head
Djones Boni [Sat, 22 Nov 2014 22:22:52 +0000 (20:22 -0200)]
Move LibreOffice.gitignore to /Global

9 years agoadd rules for new CakePHP 3
cake17 [Thu, 20 Nov 2014 08:30:16 +0000 (09:30 +0100)]
add rules for new CakePHP 3

9 years agoIgnore auxiliary files from knitr 1286/head
Adam Liter [Thu, 20 Nov 2014 03:55:34 +0000 (22:55 -0500)]
Ignore auxiliary files from knitr

9 years agoAdd LibreOffice.gitignore
Djones Boni [Wed, 19 Nov 2014 12:38:01 +0000 (10:38 -0200)]
Add LibreOffice.gitignore

9 years agoAvoid ignoring Gradle wrapper jar file 1285/head
Paolo Fulgoni [Tue, 18 Nov 2014 16:30:56 +0000 (17:30 +0100)]
Avoid ignoring Gradle wrapper jar file

This is added because .jar files are usually ignored (see Java.gitignore)

9 years agoRemoved .powconfig line 1257/head
Antoine-Ali Zarrouk [Tue, 18 Nov 2014 09:05:35 +0000 (10:05 +0100)]
Removed .powconfig line

Couldn't find any references to .powconfig  being used in application directory

9 years agoTargeted more specifically pow files
Antoine-Ali Zarrouk [Tue, 18 Nov 2014 08:55:58 +0000 (09:55 +0100)]
Targeted more specifically pow files

9 years agoIgnore Qt Creator cache files for Qbs projects. 1284/head
Jake Petroules [Sun, 16 Nov 2014 20:04:57 +0000 (12:04 -0800)]
Ignore Qt Creator cache files for Qbs projects.

9 years agoMerge pull request #1241 from sayedihashimi/master
Brendan Forster [Sun, 16 Nov 2014 02:45:21 +0000 (10:45 +0800)]
Merge pull request #1241 from sayedihashimi/master

adding bower_components