about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2011-03-26 13:40:20 +0100
committerLars Hjemli <hjemli@gmail.com>2011-03-26 13:40:20 +0100
commit4d2a303c3e198c91cb6635eb66fa6f0a6c0277cc (patch)
tree5899d767fad63be064052572287ca03b7f468238
parentFix crash when projectsfile cannot be opened (diff)
downloadcgit-pink-4d2a303c3e198c91cb6635eb66fa6f0a6c0277cc.tar.gz
cgit-pink-4d2a303c3e198c91cb6635eb66fa6f0a6c0277cc.zip
cgitrc.5: tar.xz is a supported snapshot format
When tar.xz support was added in 0642435fed (2009-12-08: Add
.tar.xz-snapshot support), cgitrc.5 was not updated to match. This
patch fixes the issue.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r--cgitrc.5.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/cgitrc.5.txt b/cgitrc.5.txt
index c3698a6..be8483c 100644
--- a/cgitrc.5.txt
+++ b/cgitrc.5.txt
@@ -308,7 +308,8 @@ side-by-side-diffs::
 snapshots::
 	Text which specifies the default set of snapshot formats generated by
 	cgit. The value is a space-separated list of zero or more of the
-	values "tar", "tar.gz", "tar.bz2" and "zip". Default value: none.
+	values "tar", "tar.gz", "tar.bz2", "tar.xz" and "zip". Default value:
+	none.
 
 source-filter::
 	Specifies a command which will be invoked to format plaintext blobs
e9a&follow=1'>Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer