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_ko.html 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>비어있는 저장소</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> 저장소는 비어 있어서 Gitblit 에서 볼 수 없습니다.
  14. <p></p>
  15. 이 Git url 에 커밋해 주세요. <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. <p></p>
  23. <h3>Git 명령어</h3>
  24. <span style="padding-bottom:5px;">로컬 Git 저장소가 없다면, 이 저장소를 클론(clone) 한 후, 몇 파일을 커밋하고, 그 커밋을 Gitblit 에 푸시(push) 하세요.</span>
  25. <p></p>
  26. <pre style="padding: 5px 30px;" wicket:id="cloneSyntax"></pre>
  27. <p></p>
  28. <span style="padding-bottom:5px;">만약 커밋된 로컬 Git 저장소가 있다면, 다음과 같이 저장소에 리모트를 추가하고 푸시(push)할 수 있습니다.</span>
  29. <p></p>
  30. <pre style="padding: 5px 30px;" wicket:id="remoteSyntax"></pre>
  31. <p></p>
  32. <h3>Git 배우기</h3>
  33. 만약 사용법에 자신이 없다면, Git 사용법을 더 잘 이해하기 위해
  34. <a href="http://book.git-scm.com">Git Community Book</a> 또는
  35. <a href="http://progit.org/book" target="_blank">Pro Git</a>,
  36. <a href="http://dogfeet.github.com/articles/2012/progit.html" target="_blank">Pro Git 한글</a> 을 볼 것을 고려해 보세요.
  37. <p></p>
  38. <h4>오픈소스 Git 클라이언트</h4>
  39. <ul>
  40. <li><a href="http://git-scm.com">Git</a> - 명령어 기반 공식 Git</li>
  41. <li><a href="http://tortoisegit.googlecode.com">TortoiseGit</a> - 윈도의 파일 탐색기에 통합된 UI 클라이언트 (명령어 기반 공식 Git 필요)</li>
  42. <li><a href="http://eclipse.org/egit">Eclipse/EGit</a> - 이클립스 IDE 플러그인 (Gitblit 과 같은 JGit 기반)</li>
  43. <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>
  44. <li><a href="http://rowanj.github.io/gitx/">GitX-dev</a> - a Mac OS X Git client</li>
  45. </ul>
  46. <p></p>
  47. <h4>유료 Git 클라이언트</h4>
  48. <ul>
  49. <li><a href="http://www.syntevo.com/smartgithg">SmartGit/Hg</a> - 자바 어플리케이션 (명령어 기반 공식 Git 필요)</li>
  50. <li><a href="http://www.sourcetreeapp.com/">SourceTree</a> - A free Mac Client for Git, Mercurial, and SVN</li>
  51. <li><a href="http://www.git-tower.com/">Tower</a> - a Mac OS X Git client</li>
  52. </ul>
  53. </wicket:extend>
  54. </body>
  55. </html>