Re: [aur-dev] [PATCH] Added IDE related files to gitignore, added headlines

2012-09-17 Thread Dan McGee
On Mon, Sep 17, 2012 at 6:57 PM, Lukas Fleischer
 wrote:
> On Mon, Sep 17, 2012 at 08:07:07AM +0200, ma...@xenji.com wrote:
>> From: "Mario (xenji) Mueller" 
>>
>> Signed-off-by: Mario (xenji) Mueller 
>> ---
>>  .gitignore | 18 ++
>>  1 file changed, 18 insertions(+)
>
> I don't think that this is the right way to ignore IDE files.
> User-specific files, which are not meant to be tracked, should be
> specified using the "core.excludesfile" configuration option. Only
> project-specific (and very common) stuff should be added to the
> repositories.

Or .git/info/exclude, which has been around forever.

-Dan


Re: [aur-dev] [PATCH] Added IDE related files to gitignore, added headlines

2012-09-17 Thread Lukas Fleischer
On Mon, Sep 17, 2012 at 08:07:07AM +0200, ma...@xenji.com wrote:
> From: "Mario (xenji) Mueller" 
> 
> Signed-off-by: Mario (xenji) Mueller 
> ---
>  .gitignore | 18 ++
>  1 file changed, 18 insertions(+)
> 
> diff --git a/.gitignore b/.gitignore
> index 11e9b7e..155bf10 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -1,11 +1,29 @@
> +# Common Files
>  .htaccess
>  robots.txt
>  *.swp
> +
> +## Local Config
>  web/lib/config.inc
>  web/lib/config.inc.php
> +
> +## Mac Files
>  *.DS_Store
> +
> +## Demo Data
>  web/html/xml/*.xml
>  dummy-data.sql*
> +
> +## Translations
>  web/locale/*/
>  po/*.mo
>  po/*.po~
> +
> +# IDE Data Files
> +## PHPStorm
> +.idea/
> +*.iml
> +
> +## Eclipse
> +.settings/
> +.project

I don't think that this is the right way to ignore IDE files.
User-specific files, which are not meant to be tracked, should be
specified using the "core.excludesfile" configuration option. Only
project-specific (and very common) stuff should be added to the
repositories.

> \ No newline at end of file
> -- 
> 1.7.12


[aur-dev] [PATCH] Added IDE related files to gitignore, added headlines

2012-09-16 Thread mario
From: "Mario (xenji) Mueller" 

Signed-off-by: Mario (xenji) Mueller 
---
 .gitignore | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/.gitignore b/.gitignore
index 11e9b7e..155bf10 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,11 +1,29 @@
+# Common Files
 .htaccess
 robots.txt
 *.swp
+
+## Local Config
 web/lib/config.inc
 web/lib/config.inc.php
+
+## Mac Files
 *.DS_Store
+
+## Demo Data
 web/html/xml/*.xml
 dummy-data.sql*
+
+## Translations
 web/locale/*/
 po/*.mo
 po/*.po~
+
+# IDE Data Files
+## PHPStorm
+.idea/
+*.iml
+
+## Eclipse
+.settings/
+.project
\ No newline at end of file
-- 
1.7.12



[aur-dev] [PATCH] Added IDE related files to gitignore, added headlines

2012-09-16 Thread mario
* Added phpstorm and eclipse-pdt related files to gitignore
* Added headlines for each line I could identify