* maint:
  Fix overridable written with an extra 'e'
  Documentation: git-archive: mark --format as optional in summary
  Round-down years in "years+months" relative date view
This commit is contained in:
Junio C Hamano 2009-08-27 22:01:01 -07:00
Родитель 106a36509d 749086fa09
Коммит aab9ea1aad
4 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -9,7 +9,7 @@ git-archive - Create an archive of files from a named tree
SYNOPSIS SYNOPSIS
-------- --------
[verse] [verse]
'git archive' --format=<fmt> [--list] [--prefix=<prefix>/] [<extra>] 'git archive' [--format=<fmt>] [--list] [--prefix=<prefix>/] [<extra>]
[--output=<file>] [--worktree-attributes] [--output=<file>] [--worktree-attributes]
[--remote=<repo> [--exec=<git-upload-archive>]] <tree-ish> [--remote=<repo> [--exec=<git-upload-archive>]] <tree-ish>
[path...] [path...]

Просмотреть файл

@ -61,7 +61,7 @@ automatic consolidation of packs.
--prune=<date>:: --prune=<date>::
Prune loose objects older than date (default is 2 weeks ago, Prune loose objects older than date (default is 2 weeks ago,
overrideable by the config variable `gc.pruneExpire`). This overridable by the config variable `gc.pruneExpire`). This
option is on by default. option is on by default.
--no-prune:: --no-prune::

2
date.c
Просмотреть файл

@ -135,7 +135,7 @@ const char *show_date(unsigned long time, int tz, enum date_mode mode)
} }
/* Give years and months for 5 years or so */ /* Give years and months for 5 years or so */
if (diff < 1825) { if (diff < 1825) {
unsigned long years = (diff + 183) / 365; unsigned long years = diff / 365;
unsigned long months = (diff % 365 + 15) / 30; unsigned long months = (diff % 365 + 15) / 30;
int n; int n;
n = snprintf(timebuf, sizeof(timebuf), "%lu year%s", n = snprintf(timebuf, sizeof(timebuf), "%lu year%s",

Просмотреть файл

@ -415,7 +415,7 @@ sub gitweb_get_feature {
@{$feature{$name}{'default'}}); @{$feature{$name}{'default'}});
if (!$override) { return @defaults; } if (!$override) { return @defaults; }
if (!defined $sub) { if (!defined $sub) {
warn "feature $name is not overrideable"; warn "feature $name is not overridable";
return @defaults; return @defaults;
} }
return $sub->(@defaults); return $sub->(@defaults);