aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
* | Use GIT-1.5.4.1Gravatar Lars Hjemli2008-02-16-1/+1
| |
* | Use GIT-1.5.4Gravatar Lars Hjemli2008-02-02-1/+1
| |
* | Use GIT-1.5.4.rc5Gravatar Lars Hjemli2008-01-29-1/+1
| |
* | Use GIT-1.5.4.rc4Gravatar Lars Hjemli2008-01-21-2/+2
| |
* | Merge branch 'stable'Gravatar Lars Hjemli2008-01-14-6/+7
|\ \ | |/ | | | | | | | | | | | | * stable: CGIT 0.7.2 Use GIT-1.5.3.8 Compare string lengths when parsing the snapshot mask Default repo description to "[no description]"
| * CGIT 0.7.2Gravatar Lars Hjemli2008-01-10-1/+1
| | | | | | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * Use GIT-1.5.3.8Gravatar Lars Hjemli2008-01-10-1/+1
| |
| * Compare string lengths when parsing the snapshot maskGravatar Lars Hjemli2007-12-03-3/+4
| | | | | | | | | | | | | | | | | | | | We used to rely on the result from strncmp() without comparing the length of the strings involved. Even worse, any single-character format specifier would enable zip-format due to the optional '.'-prefix since the length of the mask then would become zero. Noticed-by: Evan Martin <sys@neugierig.org> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * Default repo description to "[no description]"Gravatar Evan Martin2007-12-03-1/+1
| | | | | | | | | | | | | | Otherwise, when you leave out a description for a repository, the NULL default causes cgit to print out titles like "cgit - (null)". Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | Check for NULL-subject in patch viewGravatar Lars Hjemli2008-01-10-1/+6
| | | | | | | | | | | | While at it, make sure the commit message ends with a '\n'. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | Handle missing default branch and error out on invalid branch namesGravatar Lars Hjemli2008-01-04-4/+58
| | | | | | | | | | | | | | | | | | | | When no branch is specified and the repository does not have a default branch, use the first branch. Also, print sensible errormessages when the repository does not contain any branches and when invalid branchnames are specified. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | Add plain patch viewGravatar Lars Hjemli2007-12-11-2/+122
| | | | | | | | | | | | | | | | | | | | The new view mimics the output from `git format-patch`, making it possible to cherry-pick directly from cgit with something like `curl $url | git am`. Inspired by a patch to `git-apply` by Mike Hommey: http://thread.gmane.org/gmane.comp.version-control.git/67611/focus=67610 Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | Add support for automatic and custom clone urlsGravatar Lars Hjemli2007-12-03-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | |