diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-06-29 14:48:34 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-06-29 14:48:34 -0700 |
commit | b28b6da4cdb9041d612ba00b96220a3a7c17c034 (patch) | |
tree | 8738443f8b7ddc0f173a32d4ecc9555338d2da24 | |
parent | 2c7549f17e19ceeb40bb1c4747ba21ceec9636da (diff) | |
parent | 4da9eaa4c7c20bd15c034d4abb3ee89a2942f08c (diff) | |
download | nextcloud-server-b28b6da4cdb9041d612ba00b96220a3a7c17c034.tar.gz nextcloud-server-b28b6da4cdb9041d612ba00b96220a3a7c17c034.zip |
Merge pull request #3897 from bantu/gitignore
gitignore: Make paths relative to repository root.
-rw-r--r-- | .gitignore | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/.gitignore b/.gitignore index 6259482c002..43f33783e39 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,24 @@ # the default generated dir + db file -data -owncloud -config/config.php -config/mount.php -apps/inc.php +/data +/owncloud +/config/config.php +/config/mount.php +/apps/inc.php # ignore all apps except core ones -apps* -!apps/files -!apps/files_encryption -!apps/files_external -!apps/files_sharing -!apps/files_trashbin -!apps/files_versions -!apps/user_ldap -!apps/user_webdavauth +/apps* +!/apps/files +!/apps/files_encryption +!/apps/files_external +!/apps/files_sharing +!/apps/files_trashbin +!/apps/files_versions +!/apps/user_ldap +!/apps/user_webdavauth # ignore themes except the README -themes/* -!themes/README +/themes/* +!/themes/README # just sane ignores .*.sw[po] @@ -76,7 +76,7 @@ nbproject /tests/phpunit.xml # Tests - auto-generated files -data-autotest +/data-autotest /tests/coverage* /tests/autoconfig* /tests/autotest* |