diff --git a/progit/templates/repo_info.html b/progit/templates/repo_info.html
index 4a48847..6770324 100644
--- a/progit/templates/repo_info.html
+++ b/progit/templates/repo_info.html
@@ -16,71 +16,94 @@
{% if branchname %} ({{ branchname }}) {% endif %}
+{% if repo_obj and repo_obj.is_empty %}
- This repo is brand new!Branches
-
- {% for branch in branches %}
-
-
If you already have a git repo:
+
+ git remote add origin https://githosted.org/{{ repo.name }}.git
+ git push -u origin master
+
-{% if total_page %}
-|
- {% if page > 1%}
-
- < Previous
-
+ If you have no create your git repo yet: +
+ touch README.rst
+ git init
+ git add README.rst
+ git commit -m "Add README file"
+ git remote add origin https://githosted.org/{{ repo.name }}.git
+ git push -u origin master
+
+
+
+
+{% else %}
+ Branches+
Last 10 commits- {% else %} -Commits list+ |