/scalate-website/src/source.page

http://github.com/scalate/scalate · Visualforce Page · 74 lines · 53 code · 21 blank · 0 comment · 0 complexity · 568c97be15618eea6c72ac44ebc4269b MD5 · raw file

  1. ---
  2. title: Source
  3. in_menu: true
  4. sort_info: 40
  5. --- name:overview
  6. # ${project_name}
  7. Get the latest source code
  8. --- name:content pipeline:jade
  9. .left
  10. :markdown
  11. # Source Repository
  12. .right
  13. :&markdown
  14. #{project_name} stores its source code in a [Git](http://git-scm.com/) repository hosted on [github](http://github.com) at this location:
  15. * [#{github_page}](#{github_page})
  16. If you are new to Git you might like to try the [Git guide for subversion users](http://git.or.cz/course/svn.html) or have a look at the [Git community book](http://book.git-scm.com/).
  17. .left
  18. :markdown
  19. # How to Checkout
  20. .right
  21. :&markdown
  22. Read only access to the repository is available at the following URL:
  23. * **#{git_user_url}**
  24. You must first install a [Git client](http://git-scm.com/download). Then you clone the repository using the following:
  25. git clone #{git_user_url}
  26. cd #{project_id}
  27. Now you probably want to try [build the scalate code](building.html)
  28. .left
  29. :markdown
  30. # Committer access
  31. .right
  32. :&markdown
  33. Project members can push to the repository using the following URL:
  34. * **#{git_commiter_url}**
  35. You must first install a [Git client](http://git-scm.com/download). Then you clone the repository using the Git URL:
  36. git clone #{git_commiter_url}
  37. cd #{project_id}
  38. .left
  39. :markdown
  40. # Contributing patches
  41. .right
  42. :markdown
  43. If you are not yet a committer but want to contribute some patch (we love [contributions!](contributing.html)) here's how you can submit patches
  44. - include("_creating_patches.ssp.md")
  45. .left
  46. :markdown
  47. # Next steps
  48. .right
  49. :&markdown
  50. Once you have checked out the code try following
  51. * [instructions to build #{project_name}](building.html)
  52. * read the [documentation](documentation/index.html)
  53. * browse the [developer links and maven reports](developers.html)