mirror of
https://github.com/git/git.git
synced 2026-03-17 12:10:08 +01:00
Merge branch 'master' into next
* master: Relnotes: remove items fixed on 'maint' Prepare for 1.7.3.4 thread-utils.h: simplify the inclusion Makefile: transport-helper uses thread-utils.h Add --force to git-send-email documentation
This commit is contained in:
32
Documentation/RelNotes/1.7.3.4.txt
Normal file
32
Documentation/RelNotes/1.7.3.4.txt
Normal file
@@ -0,0 +1,32 @@
|
||||
Git v1.7.3.4 Release Notes
|
||||
==========================
|
||||
|
||||
Fixes since v1.7.3.3
|
||||
--------------------
|
||||
|
||||
* Smart HTTP transport used to incorrectly retry redirected POST
|
||||
request with GET request.
|
||||
|
||||
* "git apply" did not correctly handle patches that only change modes
|
||||
if told to apply while stripping leading paths with -p option.
|
||||
|
||||
* "git apply" can deal with patches with timezone formatted with a
|
||||
colon between the hours and minutes part (e.g. "-08:00" instead of
|
||||
"-0800").
|
||||
|
||||
* "git cherry-pick" or "git revert" refused to work when a path that
|
||||
would be modified by the operation was stat-dirty without a real
|
||||
difference in the contents of the file.
|
||||
|
||||
* "git diff --check" reported an incorrect line number for added
|
||||
blank lines at the end of file.
|
||||
|
||||
* Setting log.decorate configuration variable to "0" or "1" to mean
|
||||
"false" or "true" did not work.
|
||||
|
||||
* "git tag -v" did not work with GPG signatures in rfc1991 mode.
|
||||
|
||||
* The post-receive-email sample hook was accidentally broken in 1.7.3.3
|
||||
update.
|
||||
|
||||
Other minor fixes and documentation updates are also included.
|
||||
@@ -96,24 +96,11 @@ Fixes since v1.7.3
|
||||
All of the fixes in v1.7.3.X maintenance series are included in this
|
||||
release, unless otherwise noted.
|
||||
|
||||
* Smart HTTP transport used to incorrectly retry redirected POST
|
||||
request with GET request (311e2ea006).
|
||||
|
||||
* "git apply" did not correctly handle patches that only change modes
|
||||
if told to apply while stripping leading paths with -p option (aae1f6ac).
|
||||
|
||||
* "git apply" can deal with patches with timezone formatted with a
|
||||
colon between the hours and minutes part (e.g. "-08:00" instead of
|
||||
"-0800").
|
||||
|
||||
* "git checkout" removed an untracked file "foo" from the working
|
||||
tree when switching to a branch that contains a tracked path
|
||||
"foo/bar". Prevent this, just like the case where the conflicting
|
||||
path were "foo" (c752e7f..7980872d).
|
||||
|
||||
* "git diff --check" reported an incorrect line number for added
|
||||
blank lines at the end of file (8837d335).
|
||||
|
||||
* "git log --author=me --author=her" did not find commits written by
|
||||
me or by her; instead it looked for commits written by me and by
|
||||
her, which is impossible.
|
||||
|
||||
@@ -322,6 +322,9 @@ have been specified, in which case default to 'compose'.
|
||||
Default is the value of 'sendemail.validate'; if this is not set,
|
||||
default to '--validate'.
|
||||
|
||||
--force::
|
||||
Send emails even if safety checks would prevent it.
|
||||
|
||||
|
||||
CONFIGURATION
|
||||
-------------
|
||||
|
||||
3
Makefile
3
Makefile
@@ -1946,13 +1946,12 @@ builtin/branch.o builtin/checkout.o builtin/clone.o builtin/reset.o branch.o tra
|
||||
builtin/bundle.o bundle.o transport.o: bundle.h
|
||||
builtin/bisect--helper.o builtin/rev-list.o bisect.o: bisect.h
|
||||
builtin/clone.o builtin/fetch-pack.o transport.o: fetch-pack.h
|
||||
builtin/grep.o: thread-utils.h
|
||||
builtin/grep.o builtin/pack-objects.o transport-helper.o: thread-utils.h
|
||||
builtin/send-pack.o transport.o: send-pack.h
|
||||
builtin/log.o builtin/shortlog.o: shortlog.h
|
||||
builtin/prune.o builtin/reflog.o reachable.o: reachable.h
|
||||
builtin/commit.o builtin/revert.o wt-status.o: wt-status.h
|
||||
builtin/tar-tree.o archive-tar.o: tar.h
|
||||
builtin/pack-objects.o: thread-utils.h
|
||||
connect.o transport.o http-backend.o: url.h
|
||||
http-fetch.o http-walker.o remote-curl.o transport.o walker.o: walker.h
|
||||
http.o http-walker.o http-push.o http-fetch.o remote-curl.o: http.h url.h
|
||||
|
||||
@@ -17,11 +17,7 @@
|
||||
#include "grep.h"
|
||||
#include "quote.h"
|
||||
#include "dir.h"
|
||||
|
||||
#ifndef NO_PTHREADS
|
||||
#include <pthread.h>
|
||||
#include "thread-utils.h"
|
||||
#endif
|
||||
|
||||
static char const * const grep_usage[] = {
|
||||
"git grep [options] [-e] <pattern> [<rev>...] [[--] <path>...]",
|
||||
|
||||
@@ -16,11 +16,7 @@
|
||||
#include "list-objects.h"
|
||||
#include "progress.h"
|
||||
#include "refs.h"
|
||||
|
||||
#ifndef NO_PTHREADS
|
||||
#include <pthread.h>
|
||||
#include "thread-utils.h"
|
||||
#endif
|
||||
|
||||
static const char pack_usage[] =
|
||||
"git pack-objects [ -q | --progress | --all-progress ]\n"
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
#ifndef THREAD_COMPAT_H
|
||||
#define THREAD_COMPAT_H
|
||||
|
||||
#ifndef NO_PTHREADS
|
||||
#include <pthread.h>
|
||||
|
||||
extern int online_cpus(void);
|
||||
extern int init_recursive_mutex(pthread_mutex_t*);
|
||||
|
||||
#endif
|
||||
#endif /* THREAD_COMPAT_H */
|
||||
|
||||
@@ -8,11 +8,7 @@
|
||||
#include "quote.h"
|
||||
#include "remote.h"
|
||||
#include "string-list.h"
|
||||
|
||||
#ifndef NO_PTHREADS
|
||||
#include <pthread.h>
|
||||
#include "thread-utils.h"
|
||||
#endif
|
||||
|
||||
static int debug;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user