File tree Expand file tree Collapse file tree 3 files changed +31
-5
lines changed
Expand file tree Collapse file tree 3 files changed +31
-5
lines changed Original file line number Diff line number Diff line change 1+ Git v1.7.10.3 Release Notes
2+ ===========================
3+
4+ Fixes since v1.7.10.2
5+ ---------------------
6+
7+ * Running "git checkout" on an unborn branch used to corrupt HEAD.
8+
9+ * When checking out another commit from an already detached state, we
10+ used to report all commits that are not reachable from any of the
11+ refs as lossage, but some of them might be reachable from the new
12+ HEAD, and there is no need to warn about them.
13+
14+ * Some time ago, "git clone" lost the progress output for its
15+ "checkout" phase; when run without any "--quiet" option, it should
16+ give progress to the lengthy operation.
17+
18+ * "log -z --pretty=tformat:..." did not terminate each record with
19+ NUL. The fix is not entirely correct when the output also asks for
20+ --patch and/or --stat, though.
21+
22+ * The DWIM behaviour for "log --pretty=format:%gd -g" was somewhat
23+ broken and gave undue precedence to configured log.date, causing
24+ "git stash list" to show "stash@{time stamp string}".
25+
26+ Also contains minor fixes and documentation updates.
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ if you choose to go that route.
4343Submodules are composed from a so-called `gitlink` tree entry
4444in the main repository that refers to a particular commit object
4545within the inner repository that is completely separate.
46- A record in the `.gitmodules` file at the root of the source
47- tree assigns a logical name to the submodule and describes
48- the default URL the submodule shall be cloned from.
46+ A record in the `.gitmodules` (see linkgit:gitmodules[5]) file at the
47+ root of the source tree assigns a logical name to the submodule and
48+ describes the default URL the submodule shall be cloned from.
4949The logical name can be used for overriding this URL within your
5050local repository configuration (see 'submodule init').
5151
Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ Then the server will start sending its packfile data.
351351A simple clone may look like this (with no 'have' lines):
352352
353353----
354- C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d\0multi_ack \
354+ C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d multi_ack \
355355 side-band-64k ofs-delta\n
356356 C: 0032want 7d1665144a3a975c05f1f43902ddaf084e784dbe\n
357357 C: 0032want 5a3f6be755bbb7deae50065988cbfa1ffa9ab68a\n
@@ -367,7 +367,7 @@ A simple clone may look like this (with no 'have' lines):
367367An incremental update (fetch) response might look like this:
368368
369369----
370- C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d\0multi_ack \
370+ C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d multi_ack \
371371 side-band-64k ofs-delta\n
372372 C: 0032want 7d1665144a3a975c05f1f43902ddaf084e784dbe\n
373373 C: 0032want 5a3f6be755bbb7deae50065988cbfa1ffa9ab68a\n
You can’t perform that action at this time.
0 commit comments