Skip to content

Commit 39fd762

Browse files
committed
Sync with 1.8.3.1
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parents 1462b67 + 362de91 commit 39fd762

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

Documentation/RelNotes/1.8.3.1.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Git v1.8.3.1 Release Notes
2+
========================
3+
4+
Fixes since v1.8.3
5+
------------------
6+
7+
* When $HOME is misconfigured to point at an unreadable directory, we
8+
used to complain and die. The check has been loosened.
9+
10+
* Handling of negative exclude pattern for directories "!dir" was
11+
broken in the update to v1.8.3.
12+
13+
Also contains a handful of trivial code clean-ups, documentation
14+
updates, updates to the test suite, etc.

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@ unreleased) version of Git, that is available from 'master'
4343
branch of the `git.git` repository.
4444
Documentation for older releases are available here:
4545

46-
* link:v1.8.3/git.html[documentation for release 1.8.3]
46+
* link:v1.8.3.1/git.html[documentation for release 1.8.3.1]
4747

4848
* release notes for
49+
link:RelNotes/1.8.3.1.txt[1.8.3.1],
4950
link:RelNotes/1.8.3.txt[1.8.3].
5051

5152
* link:v1.8.2.3/git.html[documentation for release 1.8.2.3]

Documentation/gitrepository-layout.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,9 @@ shallow::
211211
and maintained by shallow clone mechanism. See `--depth`
212212
option to linkgit:git-clone[1] and linkgit:git-fetch[1].
213213

214+
modules::
215+
Contains the git-repositories of the submodules.
216+
214217
SEE ALSO
215218
--------
216219
linkgit:git-init[1],

compat/mingw.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1677,14 +1677,16 @@ int sigaction(int sig, struct sigaction *in, struct sigaction *out)
16771677
#undef signal
16781678
sig_handler_t mingw_signal(int sig, sig_handler_t handler)
16791679
{
1680-
sig_handler_t old = timer_fn;
1680+
sig_handler_t old;
16811681

16821682
switch (sig) {
16831683
case SIGALRM:
1684+
old = timer_fn;
16841685
timer_fn = handler;
16851686
break;
16861687

16871688
case SIGINT:
1689+
old = sigint_fn;
16881690
sigint_fn = handler;
16891691
break;
16901692

submodule.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -603,9 +603,8 @@ int fetch_populated_submodules(const struct argv_array *options,
603603
if (!work_tree)
604604
goto out;
605605

606-
if (!the_index.initialized)
607-
if (read_cache() < 0)
608-
die("index file corrupt");
606+
if (read_cache() < 0)
607+
die("index file corrupt");
609608

610609
argv_array_push(&argv, "fetch");
611610
for (i = 0; i < options->argc; i++)

0 commit comments

Comments
 (0)