Guest User

http://stackoverflow.com/questions/11937241

a guest
Aug 13th, 2012
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.12 KB | None | 0 0
  1. .gitignore
  2. ==========
  3. /app/Config/database.php
  4. /app/tmp/cache/models/*
  5. !/app/tmp/cache/models/empty
  6. /app/tmp/cache/persistent/*
  7. !/app/tmp/cache/persistent/empty
  8. /app/tmp/cache/views/*
  9. !/app/tmp/cache/views/empty
  10. /app/tmp/cache/yada_*
  11. /app/tmp/cache/*/*
  12. /app/tmp/cache/cps_front_*
  13. /app/tmp/logs/*.log
  14. /app/tmp/sessions/*
  15. !/app/tmp/sessions/empty
  16. /app/tmp/tests/*
  17. /app/tmp/tests/empty
  18. /lib/Yada/Console/Templates/skel/tmp/
  19. /plugins
  20. /vendors
  21. /build
  22. /dist
  23. .DS_Store
  24. /tags
  25. /.tmp_staging/
  26. /build
  27. /.buildpath
  28. /.project
  29. /.settings/org.eclipse.php.core.prefs
  30. /app/Config/database.php - copia.default
  31. /app/Plugin/Migrations/
  32.  
  33. .git/config
  34. ===========
  35. [core]
  36.         repositoryformatversion = 0
  37.         filemode = true
  38.         bare = false
  39.         logallrefupdates = true
  40. [remote "origin"]
  41.         fetch = +refs/heads/*:refs/remotes/origin/*
  42.         url = https://user:password@server/some/path.git
  43. [branch "master"]
  44.         remote = origin
  45.         merge = refs/heads/master
  46. [submodule "X"]
  47.         url = git://github.com/some/path.git
  48. [submodule "app/Plugin/Y"]
  49.         url = https://github.com/some/other/path.git
Add Comment
Please, Sign In to add comment