From 78c94f84f3e66411c7e5efcba66070c6afccc509 Mon Sep 17 00:00:00 2001 From: Daniel Bailey Date: Thu, 23 May 2013 17:05:28 +0100 Subject: [PATCH 1/7] added lazarus gitignore file --- Lazarus.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Lazarus.gitignore diff --git a/Lazarus.gitignore b/Lazarus.gitignore new file mode 100644 index 00000000..e7149354 --- /dev/null +++ b/Lazarus.gitignore @@ -0,0 +1,12 @@ +#ignore backup files +backup/ + +#ignore files generated by the compiler +lib/ +*.compiled +*.o +*.or +*.ppu + +#exclude executable output in windows +*.exe \ No newline at end of file From 3ade8536042bf9bef2a1ba49b9f5b2152cd5635d Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Wed, 13 Nov 2013 03:14:12 +0200 Subject: [PATCH 2/7] Update Eclipse.gitignore --- Global/Eclipse.gitignore | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 73468714..72727761 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -1,9 +1,8 @@ *.pydevproject .metadata .gradle -bin/** -tmp/** -tmp/**/* +bin/ +tmp/ *.tmp *.bak *.swp From e2caec1780021df0de0f5bc7adf3cdf12b6ef024 Mon Sep 17 00:00:00 2001 From: Jirka Kremser Date: Thu, 14 Mar 2013 23:26:39 +0100 Subject: [PATCH 3/7] Adding ".gwt/", "gwt-unitCache/", "www-test" and ".gwt-tmp/" to .gitignore --- GWT.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/GWT.gitignore b/GWT.gitignore index c558713f..07704e54 100644 --- a/GWT.gitignore +++ b/GWT.gitignore @@ -14,3 +14,15 @@ gwt-unitCache/ # more caches and things from deploy # war/WEB-INF/deploy/ war/WEB-INF/classes/ + +#compilation logs +.gwt/ + +#caching for already compiled files +gwt-unitCache/ + +#gwt junit compilation files +www-test/ + +#old GWT (1.5) created this dir +.gwt-tmp/ From 00686415c4e23739d7190f0fe645021e886b227b Mon Sep 17 00:00:00 2001 From: Ray Solomon Date: Wed, 13 Nov 2013 01:27:28 -0800 Subject: [PATCH 4/7] add 'build' to Node.gitignore This is to exclude compiled code from nodejs addons. Reference: http://nodejs.org/api/addons.html --- Node.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Node.gitignore b/Node.gitignore index cfdef680..c84ba258 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -10,5 +10,6 @@ lib-cov pids logs results +build node_modules From 972234a220488ee791bfa4bc7371f6d5559c829d Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Wed, 13 Nov 2013 14:32:07 +0100 Subject: [PATCH 5/7] Ignore rope files. Rope (https://bitbucket.org/zjes/rope_py3k/overview) is a refactoring tool for Python. It creates temporary files in `.ropeproject` to cache data. These files should be ignored by default. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 3d578453..50a87264 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -39,6 +39,9 @@ coverage.xml .project .pydevproject +# Rope +.ropeproject + # Django stuff: *.log *.pot From 27569799cb61db08e9a2c06dfb61beae7a0d6573 Mon Sep 17 00:00:00 2001 From: Daniel Bailey Date: Wed, 13 Nov 2013 18:33:14 +0000 Subject: [PATCH 6/7] Added lazarus ignore file in the global dir this time --- Lazarus.gitignore => Global/Lazarus.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Lazarus.gitignore => Global/Lazarus.gitignore (100%) diff --git a/Lazarus.gitignore b/Global/Lazarus.gitignore similarity index 100% rename from Lazarus.gitignore rename to Global/Lazarus.gitignore From f2656a471618fd2d1d593b05d5bf05cc3cdd996b Mon Sep 17 00:00:00 2001 From: Oliver Schrenk Date: Fri, 15 Nov 2013 20:10:11 +0100 Subject: [PATCH 7/7] Ignore files created by maven-release-plugin Maven Release Plugin provides a standard mechanism to release project artifacts. During the various phases of the execution the plugin create various files, especially if you do a dry run that allows you to see the changes that the plugin will perform on your pom files mvn release:prepare -D dryRun=true It will create - `release.properties` - copy of the properties to be used - `pom.xml.releaseBackup` - the pom.xml prior to any changes - `pom.xml.tag` - the pom.xml as it will look when tagged - `pom.xml.next` - the pom.xml as it will look for the next iteration --- Maven.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Maven.gitignore b/Maven.gitignore index 6ca4036f..94eab12d 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -1,2 +1,5 @@ target/ - *.releaseBackup +pom.xml.tag +pom.xml.releaseBackup +pom.xml.next +release.properties