James Moger
2012-09-17 5c6afb3a068c21d990187c6b199e7bd3c876745d
commit | author | age
82df52 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
JM 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
7 <body>
8 <wicket:extend>
9
4e1cc8 10     <h2>Empty Repository</h2>
JM 11     <p></p>
12         <div class="row">
13             <div class="span10">
14                 <div class="alert alert-success">
15                     <span wicket:id="repository" style="font-weight: bold;">[repository]</span> is an empty repository and can not be viewed by Gitblit.
16                     <p></p>        
17                     Please push some commits to <span wicket:id="pushurl"></span>
18                     <p></p>
19                     <hr/>
20                     After you have pushed commits you may <b>refresh</b> this page to view your repository.
21                 </div>
22             </div>
23         </div>
24         
02e0f7 25         <h3>Git Command-Line Syntax</h3>
e04e02 26         <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>
02e0f7 27         <p></p>
4e1cc8 28         <pre style="padding: 5px 30px;" wicket:id="cloneSyntax"></pre>
02e0f7 29         <p></p>
JM 30         <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>
31         <p></p>
4e1cc8 32         <pre wicket:id="remoteSyntax" style="padding: 5px 30px;"></pre>
82df52 33         <p></p>
JM 34         <h3>Learn Git</h3>
02e0f7 35         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.
82df52 36         <p></p>
JM 37         <h4>Open Source Git Clients</h4>
38         <ul>
39             <li><a href="http://git-scm.com">Git</a> - the official, command-line Git</li>
40             <li><a href="http://tortoisegit.googlecode.com">TortoiseGit</a> - Windows file explorer integration (requires official, command-line Git)</li>
41             <li><a href="http://eclipse.org/egit">Eclipse/EGit</a> - Git for the Eclipse IDE (based on JGit, like Gitblit)</li>
4e1cc8 42             <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>
JM 43             <li><a href="http://gitx.laullon.com/">GitX (L)</a> - a Mac OS X Git client</li>            
82df52 44         </ul>
JM 45         <p></p>
4e1cc8 46         <h4>Commercial/Closed-Source Git Clients</h4>
82df52 47         <ul>
4e1cc8 48             <li><a href="http://www.syntevo.com/smartgit">SmartGit</a> - A Java Git, Mercurial, and SVN client application (requires official, command-line Git)</li>
JM 49             <li><a href="http://www.sourcetreeapp.com/">SourceTree</a> - A free Mac Client for Git, Mercurial, and SVN</li>
82df52 50         </ul>
JM 51 </wicket:extend>    
52 </body>
53 </html>