-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* maint: Document accumulated fixes since 1.7.9.2 Git 1.7.8.5 grep -P: Fix matching ^ and $ am: don't infloop for an empty input file rebase -m: only call "notes copy" when rewritten exists and is non-empty git-p4: remove bash-ism in t9800 git-p4: remove bash-ism in t9809 git-p4: fix submit regression with clientSpec and subdir clone git-p4: set useClientSpec variable on initial clone Makefile: add thread-utils.h to LIB_H Conflicts: RelNotes t/t9809-git-p4-client-view.sh
- Loading branch information
Showing
12 changed files
with
291 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Git v1.7.8.5 Release Notes | ||
========================== | ||
|
||
Fixes since v1.7.8.4 | ||
-------------------- | ||
|
||
* Dependency on our thread-utils.h header file was missing for | ||
objects that depend on it in the Makefile. | ||
|
||
* "git am" when fed an empty file did not correctly finish reading it | ||
when it attempts to guess the input format. | ||
|
||
* "git grep -P" (when PCRE is enabled in the build) did not match the | ||
beginning and the end of the line correctly with ^ and $. | ||
|
||
* "git rebase -m" tried to run "git notes copy" needlessly when | ||
nothing was rewritten. | ||
|
||
Also contains minor fixes and documentation updates. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Git v1.7.9.3 Release Notes | ||
========================== | ||
|
||
Fixes since v1.7.9.2 | ||
-------------------- | ||
|
||
* "git p4" (in contrib/) submit the changes to a wrong place when the | ||
"--use-client-spec" option is set. | ||
|
||
* The config.mak.autogen generated by optional autoconf support tried | ||
to link the binary with -lintl even when libintl.h is missing from | ||
the system. | ||
|
||
* "git add --refresh <pathspec>" used to warn about unmerged paths | ||
outside the given pathspec. | ||
|
||
Also contains minor fixes and documentation updates. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -202,7 +202,7 @@ check_patch_format () { | |
l1= | ||
while test -z "$l1" | ||
do | ||
read l1 | ||
read l1 || break | ||
done | ||
read l2 | ||
read l3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.