James Moger
2012-09-10 fabe060d3a435f116128851f828e35c2af5fde67
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  
      xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
      xml:lang="en"  
      lang="en"> 
 
<body>
<wicket:extend>
 
    <!-- markdown message -->
    <div class="markdown">
        <h2>Empty Repository</h2>
        <p></p>
        <span wicket:id="repository" style="font-weight: bold;">[repository]</span> is an empty repository and can not be viewed by Gitblit.
        <p></p>
        Please push some commits to <span wicket:id="pushurl"></span>
        <p></p>
        <h3>Git Command-Line Syntax</h3>
        <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>
        <p></p>
        <pre style="padding-top:5px;" wicket:id="cloneSyntax"></pre>
        <p></p>
        <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>
        <p></p>
        <pre wicket:id="remoteSyntax"></pre>
        <p></p>
        <h3>Learn Git</h3>
        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.
        <p></p>
        <h4>Open Source Git Clients</h4>
        <ul>
            <li><a href="http://git-scm.com">Git</a> - the official, command-line Git</li>
            <li><a href="http://tortoisegit.googlecode.com">TortoiseGit</a> - Windows file explorer integration (requires official, command-line Git)</li>
            <li><a href="http://eclipse.org/egit">Eclipse/EGit</a> - Git for the Eclipse IDE (based on JGit, like Gitblit)</li>
        </ul>
        <p></p>
        <h4>Commercial Git Clients</h4>
        <ul>
            <li><a href="http://www.syntevo.com/smartgit">SmartGit</a> - Java application (requires official, command-line Git)</li>
        </ul>
    </div>    
</wicket:extend>    
</body>
</html>