You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EmptyRepositoryPage.html 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"
  4. xml:lang="en"
  5. lang="en">
  6. <body>
  7. <wicket:extend>
  8. <h2>Empty Repository</h2>
  9. <p></p>
  10. <div class="row">
  11. <div class="span10">
  12. <div class="alert alert-success">
  13. <span wicket:id="repository" style="font-weight: bold;">[repository]</span> is an empty repository and can not be viewed by Gitblit.
  14. <p></p>
  15. Please push some commits to <span wicket:id="pushurl"></span>
  16. <p></p>
  17. <hr/>
  18. After you have pushed commits you may <b>refresh</b> this page to view your repository.
  19. </div>
  20. </div>
  21. </div>
  22. <h3>Git Command-Line Syntax</h3>
  23. <span style="padding-bottom:5px;">If you do not have a local Git repository, then you should clone this repository, commit some files, and then push your commits back to Gitblit.</span>
  24. <p></p>
  25. <pre style="padding: 5px 30px;" wicket:id="cloneSyntax"></pre>
  26. <p></p>
  27. <span style="padding-bottom:5px;">If you already have a local Git repository with commits, then you may add this repository as a remote and push to it.</span>
  28. <p></p>
  29. <pre wicket:id="remoteSyntax" style="padding: 5px 30px;"></pre>
  30. <p></p>
  31. <h3>Learn Git</h3>
  32. If you are unsure how to use this information, consider reviewing the <a href="http://book.git-scm.com">Git Community Book</a> or <a href="http://progit.org/book" target="_blank">Pro Git</a> for a better understanding on how to use Git.
  33. <p></p>
  34. <h4>Open Source Git Clients</h4>
  35. <ul>
  36. <li><a href="http://git-scm.com">Git</a> - the official, command-line Git</li>
  37. <li><a href="http://tortoisegit.googlecode.com">TortoiseGit</a> - Windows file explorer integration (requires official, command-line Git)</li>
  38. <li><a href="http://eclipse.org/egit">Eclipse/EGit</a> - Git for the Eclipse IDE (based on JGit, like Gitblit)</li>
  39. <li><a href="https://code.google.com/p/gitextensions/">Git Extensions</a> - C# frontend for Git that features Windows Explorer and Visual Studio integration</li>
  40. <li><a href="http://rowanj.github.io/gitx/">GitX-dev</a> - a Mac OS X Git client</li>
  41. </ul>
  42. <p></p>
  43. <h4>Commercial/Closed-Source Git Clients</h4>
  44. <ul>
  45. <li><a href="http://www.syntevo.com/smartgithg">SmartGit/Hg</a> - A Java Git and Mercurial client for Windows, Mac, and Linux</li>
  46. <li><a href="http://www.sourcetreeapp.com/">SourceTree</a> - A free Git and Mercurial client for Windows & Mac</li>
  47. <li><a href="http://www.git-tower.com/">Tower</a> - a Mac OS X Git client</li>
  48. </ul>
  49. </wicket:extend>
  50. </body>
  51. </html>