[aur-dev] [PATCH] Added IDE related files to gitignore, added headlines
From: "Mario (xenji) Mueller" <mario@xenji.com> Signed-off-by: Mario (xenji) Mueller <mario@xenji.com> --- .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
On Mon, Sep 17, 2012 at 08:07:07AM +0200, mario@xenji.com wrote:
From: "Mario (xenji) Mueller" <mario@xenji.com>
Signed-off-by: Mario (xenji) Mueller <mario@xenji.com> --- .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
On Mon, Sep 17, 2012 at 6:57 PM, Lukas Fleischer <archlinux@cryptocrack.de> wrote:
On Mon, Sep 17, 2012 at 08:07:07AM +0200, mario@xenji.com wrote:
From: "Mario (xenji) Mueller" <mario@xenji.com>
Signed-off-by: Mario (xenji) Mueller <mario@xenji.com> --- .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
participants (3)
-
Dan McGee
-
Lukas Fleischer
-
marioï¼ xenji.com