This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Jul 29 12:12:46 -0700 2009 | |
| |
INSTALL.txt | Tue Nov 04 07:20:58 -0800 2008 | |
| |
LICENSE.txt | Thu Oct 30 06:49:22 -0700 2008 | |
| |
MANIFEST.in | Mon Jan 05 10:17:03 -0800 2009 | |
| |
README.markdown | Mon Jul 06 13:18:59 -0700 2009 | |
| |
django_git/ | Tue Jul 07 07:45:09 -0700 2009 | |
| |
requirements.txt | Mon Jul 06 13:24:33 -0700 2009 | |
| |
setup.py | Mon Jan 05 10:17:03 -0800 2009 |
README.markdown
README
Get the code via svn:
svn checkout http://django-git.googlecode.com/svn/trunk/ django-git
Add the django-git/django_git folder to your PYTHONPATH.
Update your settings.py:
INSTALLED_APPS = (
...
'django_git'
...
)
REPOS_ROOT = '/Users/seth/projects/git'
And don't forget to include the urls.py:
urlpatterns = patterns('',
...
(r'^git/', include('django_git.urls')),
...
)
Last, make sure you include the file located in the media directory in your project media location so that the ajax and javascript calls will work correctly. If you have a better way of doing this I would be glad to hear.
Requirements
- Pygments
- GitPython
If you would like to get started with django-git Hugh Brown has created Django-git-tester.







