summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-08-28 03:42:38 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-08-28 03:42:38 (GMT)
commit5e64650d938d7a23b73532b4a68bc6bd08cfd041 (patch)
tree303f0b96211f347c2b47d04808ceb08ede54c493
parent9e4a90ba19033d25dca1eea495b0a8c5f06efbc6 (diff)
parent93197898041fcaf84d8ac84df764cca7bf86b226 (diff)
downloadgit-5e64650d938d7a23b73532b4a68bc6bd08cfd041.zip
git-5e64650d938d7a23b73532b4a68bc6bd08cfd041.tar.gz
git-5e64650d938d7a23b73532b4a68bc6bd08cfd041.tar.bz2
Merge branch 'maint-1.6.2' into maint-1.6.3
* maint-1.6.2: 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 Conflicts: Documentation/git-archive.txt
-rw-r--r--Documentation/git-archive.txt2
-rw-r--r--Documentation/git-gc.txt2
-rw-r--r--date.c2
-rwxr-xr-xgitweb/gitweb.perl2
4 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/git-archive.txt b/Documentation/git-archive.txt
index bc132c8..92444dd 100644
--- a/Documentation/git-archive.txt
+++ b/Documentation/git-archive.txt
@@ -9,7 +9,7 @@ git-archive - Create an archive of files from a named tree
SYNOPSIS
--------
[verse]
-'git archive' --format=<fmt> [--list] [--prefix=<prefix>/] [<extra>]
+'git archive' [--format=<fmt>] [--list] [--prefix=<prefix>/] [<extra>]
[--output=<file>] [--worktree-attributes]
[--remote=<repo> [--exec=<git-upload-archive>]] <tree-ish>
[path...]
diff --git a/Documentation/git-gc.txt b/Documentation/git-gc.txt
index b292e98..dcac8c8 100644
--- a/Documentation/git-gc.txt
+++ b/Documentation/git-gc.txt
@@ -61,7 +61,7 @@ automatic consolidation of packs.
--prune=<date>::
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.
--no-prune::
diff --git a/date.c b/date.c
index 409a17d..f011692 100644
--- a/date.c
+++ b/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 */
if (diff < 1825) {
- unsigned long years = (diff + 183) / 365;
+ unsigned long years = diff / 365;
unsigned long months = (diff % 365 + 15) / 30;
int n;
n = snprintf(timebuf, sizeof(timebuf), "%lu year%s",
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 3f99361..6f355d8 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -376,7 +376,7 @@ sub gitweb_get_feature {
@{$feature{$name}{'default'}});
if (!$override) { return @defaults; }
if (!defined $sub) {
- warn "feature $name is not overrideable";
+ warn "feature $name is not overridable";
return @defaults;
}
return $sub->(@defaults);