Hash :
a2812d93
Author :
Thomas de Grivel
Date :
2022-01-26T15:41:30
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
<div class="container-fluid">
<div class="row">
<div class="col">
<p>
<code>
"<%= gettext "Hello, world !" %>"
</code>
</p>
<p>
<%= gettext "Welcome to this instance of" %>
<%= link "kmxgit", to: "https://git.kmx.io/kmx.io/kmxgit" %>
.
</p>
<p>
<%= gettext "Anyone can register and create public and private Git repositories." %>
</p>
<h3><%= link gettext("SSH keys fingerprint"), to: "#ssh-keys", id: "ssh-keys" %></h3>
<pre><%= render("ssh_keys_fingerprint.txt") %></pre>
<h3><%= link gettext("Help"), to: "#help", id: "help" %></h3>
<p>
<%= link gettext("Install git"), to: Routes.page_path(@conn, :doc_git_install) %>
</p>
<div class="highlight">
<pre><code><span class="c1"># <%= gettext "Clone repository user/path/to/repo if repo does not exist" %> :</span>
git clone <b><%= @git_ssh_url %>:user/path/to/repo.git</b>
cd <b>repo</b>
<span class="c1"># <%= gettext "Change branch" %> :</span>
git branch <b>master</b>
<span class="c1"># <%= gettext "Pull changes from remote" %> :</span>
git pull
<span class="c1"># <%= gettext "Add local changes to next commit" %> :</span>
git add <b>README.md static/index.html</b>
<span class="c1"># <%= gettext "Commit" %> :</span>
git commit -m "<b>a short and descriptive message</b>"
<span class="c1"># <%= gettext "Push changes to remote" %> :</span>
git push
<span class="c1"># <%= gettext "Or if your local repo already exists," %></span>
<span class="c1"># <%= gettext "Add remote to existing repo" %> :</span>
git remote add kmx <b><%= @git_ssh_url %>:user/path/to/repo.git</b>
<span class="c1"># <%= gettext "Push to new remote" %> :</span>
git push -u kmx master</code></pre>
</div>
<p>
<%= gettext("Get the git url at") %> <b><%= Routes.page_url(@conn, :index) %>user/path/to/repo</b>
</p>
<h4><%= link gettext("Links"), to: "#links", id: "links" %></h4>
<p>
<%= gettext("If you need more help with git, please see :") %>
<ul>
<li><a href="https://git-scm.com/doc"><%= gettext("the official git documentation") %></a></li>
<li><a href="https://stackoverflow.com/questions/tagged/git"><%= gettext("StackOverflow about git") %></a></li>
</ul>
</p>
<hr/>
<h3><%= link gettext("Stats"), to: "#stats", id: "stats" %></h3>
<div class="row">
<div class="col col-12 col-md-5">
<table class="table">
<tr>
<th><%= gettext "Disk usage" %></th>
<td><%= disk_usage(@disk_usage) %></td>
</tr>
<tr>
<th><%= gettext "Users" %></th>
<td><%= @user_count %></td>
</tr>
<tr>
<th><%= gettext "Organisations" %></th>
<td><%= @org_count %></td>
</tr>
<tr>
<th><%= gettext "Repositories" %></th>
<td><%= @repo_count %></td>
</tr>
</table>
</div>
</div>
<hr/>
<h3><%= link gettext("kmxgit authors"), to: "#authors", id: "authors" %></h3>
<ul>
<li>Thomas de Grivel <thoxdg@gmail.com></li>
</ul>
</div>
</div>
</div>