https://github.com/yysun/git-web-access
The project provides a Git smart HTTP backend on IIS.
https://github.com/yysun/git-web-access
Last synced: 4 months ago
JSON representation
The project provides a Git smart HTTP backend on IIS.
- Host: GitHub
- URL: https://github.com/yysun/git-web-access
- Owner: yysun
- License: ms-pl
- Created: 2010-06-23T11:27:46.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2015-01-08T14:29:12.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T18:48:41.397Z (over 1 year ago)
- Language: C#
- Homepage: http://gitweb.codeplex.com
- Size: 1.25 MB
- Stars: 89
- Watchers: 12
- Forks: 22
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: License.txt
Awesome Lists containing this project
README
Git Web Access
==============
Introduction
------------
For those who have interests in a Smart-HTTP Git server on IIS, the project provides an ASP.NET HttpHandler that let you run Smart HTTP Git on IIS. It is inspired by [Grack](http://github.com/schacon/grack), a Ruby Rack based application for Smart HTTP Git and [git_http_backend.py](http://github.com/dvdotsenko/git_http_backend.py), a python implementation of Smart HTTP Git.
The ASP.HET handler, GitHandler, is lightweight and can be used in any ASP.NET web applications and web sites. Another reusable piece is the WCF data service that exposes Git repository through WCF data services / OData protocol. The OData feed can be used to plot the commit graph on HTML5 canvas.
Features
--------
* Create remote repositories
* Clone, pull and push through IIS
* Leverage ASP.NET Membership for Authentication and Authorization
* Expose Git repository through [OData](http://www.odata.org) protocol
* Two Samples: Web Forms Application and ASP.NET WebPages (with Razor Syntax) Web Site
Installation
------------
* Install [Git for Windows 1.7+](http://code.google.com/p/msysgit/downloads/list) or up on server
* Create a folder on server as root folder of all remote repositories
* Under IIS, create a web application and assign a new application pool that runs as Local System
* Run the sample web application or run the sample web site
Sample Web Application Screenshots
--------------------------



Sample Web Site Screenshots
--------------------------


Change Logs
-----------
#### V0.5.3
* Build as NuGet Package
#### V0.4
* CMS spikes in the web site sample. Release cancelled.
#### V0.3
* Push authentication against ASP.NET membership.
* New ASP.NET web pages sample web site (using Razor Syntax).
* HTML 5 view of repository using the odata services.
#### V0.2
* Enable trace (please turn it off in web.config for production use).
#### V0.1
* Git Smart HTTP spike.
* WCF Data Services to expose Git repository information.
* Sample ASP.NET web forms application