diff options
author | Derek Jones <derek.jones@ellislab.com> | 2011-07-15 17:39:51 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2011-07-15 17:39:51 +0200 |
commit | abccc2fa65eea5f64773952661a8ba79e559333b (patch) | |
tree | fe52e15062602c5d2e67b51a1d2d14acfa7cb2de | |
parent | db726c67ef1235aecf8f996306489e2febb700ec (diff) |
added .gitignore, removed .hg files
-rw-r--r-- | .gitignore | 9 | ||||
-rw-r--r-- | .hgflow | 8 | ||||
-rw-r--r-- | .hgignore | 7 |
3 files changed, 9 insertions, 15 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..d740c498f --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +.DS_Store + +application/cache/* +!application/cache/index.html +!application/cache/.htaccess + +application/logs/* +!application/logs/index.html +!application/logs/.htaccess
\ No newline at end of file diff --git a/.hgflow b/.hgflow deleted file mode 100644 index ad6e56e0f..000000000 --- a/.hgflow +++ /dev/null @@ -1,8 +0,0 @@ -[Basic] -develop = develop -feature = feature/ -version_tag = -publish = default -release = release/ -hotfix = hotfix/ - diff --git a/.hgignore b/.hgignore deleted file mode 100644 index 5ee4d823e..000000000 --- a/.hgignore +++ /dev/null @@ -1,7 +0,0 @@ -syntax: glob - -.DS_Store - -syntax: regexp -application/cache/(?!index\.html|\.htaccess) -application/logs/(?!index\.html|\.htaccess) |