Child: [ddf08c] (diff)

Download this file

index.html    71 lines (62 with data), 2.4 kB

 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
{% extends 'allura:templates/repo/repo_master.html' %}
{% block title %}
{% if c.app.repo %}
Git Repository: {{c.app.repo.name}}
{% else %}
Git Repository
{% endif %}
{% endblock %}
{% block header %}{{c.app.config.options.mount_label}}{% endblock %}
{% block content %}
{{ clone_info(c.app.repo) }}
{% if log %}
<h2>Recent Commits{% if branch %} on {{branch}}{% endif %}</h2>
{{c.log_widget.display(value=log, show_paging=False,
limit=limit, page=page, count=count)}}
{% if int(count) > int(limit) %}
<a href="log?page=1">More</a>
{% endif %}
{% elif c.app.repo.status == 'ready' %}
{% if h.has_access(c.app, 'write')() %}
<div class="message warning scm-learn-basics">
<div class="content">
<img src="{{g.app_static('images/git.png')}}" style="float:left">
<h2>New to Git?</h2>
<a href="http://git-scm.com/doc">Learn the basics</a>.
</div>
</div>
<div class="message error scm-empty-repo">
<h6>Empty Repository</h6>
<div class="content">
It looks like this Git repository doesn't have any files in it. Let's commit your project code now. Just run the commands below.
</div>
</div>
<h2>First time using Git</h2>
<div class="codehilite">
<pre>cd myproject
git init
# add all your files. Use can use specific filenames or directories instead of '.'
git add .
git commit -a -m 'Initial commit'
git remote add origin {{c.app.repo.clone_url('rw', c.user.username)}}
git push origin master
git branch --set-upstream master origin/master # so 'git pull' will work later</pre>
</div>
<h2>Existing repository using Git</h2>
<div class="codehilite">
<pre>cd myproject
git remote add origin {{c.app.repo.clone_url('rw', c.user.username)}}
git push origin master
git branch --set-upstream master origin/master # so 'git pull' will work later</pre>
</div>
&nbsp;
<div class="message info scm-ssh-key">
<div class="content">
Did you get asked for your SourceForge password during this process? You can securely use your Git repository and avoid having to re-enter your password by <a href="https://sourceforge.net/account/ssh">setting up an ssh-key</a>.
</div>
</div>
{% else %}
<p><b>No (more) commits</b></p>
{% endif %}
{% endif %}
{% endblock %}