Sync with maint
This commit is contained in:
commit
3f8acaae8a
Documentation
26
Documentation/RelNotes/1.7.10.3.txt
Normal file
26
Documentation/RelNotes/1.7.10.3.txt
Normal file
@ -0,0 +1,26 @@
|
||||
Git v1.7.10.3 Release Notes
|
||||
===========================
|
||||
|
||||
Fixes since v1.7.10.2
|
||||
---------------------
|
||||
|
||||
* Running "git checkout" on an unborn branch used to corrupt HEAD.
|
||||
|
||||
* When checking out another commit from an already detached state, we
|
||||
used to report all commits that are not reachable from any of the
|
||||
refs as lossage, but some of them might be reachable from the new
|
||||
HEAD, and there is no need to warn about them.
|
||||
|
||||
* Some time ago, "git clone" lost the progress output for its
|
||||
"checkout" phase; when run without any "--quiet" option, it should
|
||||
give progress to the lengthy operation.
|
||||
|
||||
* "log -z --pretty=tformat:..." did not terminate each record with
|
||||
NUL. The fix is not entirely correct when the output also asks for
|
||||
--patch and/or --stat, though.
|
||||
|
||||
* The DWIM behaviour for "log --pretty=format:%gd -g" was somewhat
|
||||
broken and gave undue precedence to configured log.date, causing
|
||||
"git stash list" to show "stash@{time stamp string}".
|
||||
|
||||
Also contains minor fixes and documentation updates.
|
@ -43,9 +43,9 @@ if you choose to go that route.
|
||||
Submodules are composed from a so-called `gitlink` tree entry
|
||||
in the main repository that refers to a particular commit object
|
||||
within the inner repository that is completely separate.
|
||||
A record in the `.gitmodules` file at the root of the source
|
||||
tree assigns a logical name to the submodule and describes
|
||||
the default URL the submodule shall be cloned from.
|
||||
A record in the `.gitmodules` (see linkgit:gitmodules[5]) file at the
|
||||
root of the source tree assigns a logical name to the submodule and
|
||||
describes the default URL the submodule shall be cloned from.
|
||||
The logical name can be used for overriding this URL within your
|
||||
local repository configuration (see 'submodule init').
|
||||
|
||||
|
@ -351,7 +351,7 @@ Then the server will start sending its packfile data.
|
||||
A simple clone may look like this (with no 'have' lines):
|
||||
|
||||
----
|
||||
C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d\0multi_ack \
|
||||
C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d multi_ack \
|
||||
side-band-64k ofs-delta\n
|
||||
C: 0032want 7d1665144a3a975c05f1f43902ddaf084e784dbe\n
|
||||
C: 0032want 5a3f6be755bbb7deae50065988cbfa1ffa9ab68a\n
|
||||
@ -367,7 +367,7 @@ A simple clone may look like this (with no 'have' lines):
|
||||
An incremental update (fetch) response might look like this:
|
||||
|
||||
----
|
||||
C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d\0multi_ack \
|
||||
C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d multi_ack \
|
||||
side-band-64k ofs-delta\n
|
||||
C: 0032want 7d1665144a3a975c05f1f43902ddaf084e784dbe\n
|
||||
C: 0032want 5a3f6be755bbb7deae50065988cbfa1ffa9ab68a\n
|
||||
|
Loading…
Reference in New Issue
Block a user