Skip to content

Commit 609eb9f

Browse files
committed
Merge branch 'maint'
* maint: Documentation: Spelling fix in protocol-capabilities.txt checkout: accord documentation to what git does t0005: work around strange $? in ksh when program terminated by a signal
2 parents e13f38a + 5d1e341 commit 609eb9f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Documentation/git-checkout.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ the above checkout would fail like this:
263263
+
264264
------------
265265
$ git checkout mytopic
266-
fatal: Entry 'frotz' not uptodate. Cannot merge.
266+
error: You have local changes to 'frotz'; not switching branches.
267267
------------
268268
+
269269
You can give the `-m` flag to the command, which would try a

Documentation/technical/protocol-capabilities.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ both.
119119
ofs-delta
120120
---------
121121

122-
Server can send, and client understand PACKv2 with delta refering to
122+
Server can send, and client understand PACKv2 with delta referring to
123123
its base by position in pack rather than by an obj-id. That is, they can
124124
send/read OBJ_OFS_DELTA (aka type 6) in a packfile.
125125

t/t0005-signals.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ test_expect_success 'sigchain works' '
1313
test-sigchain >actual
1414
case "$?" in
1515
143) true ;; # POSIX w/ SIGTERM=15
16+
271) true ;; # ksh w/ SIGTERM=15
1617
3) true ;; # Windows
1718
*) false ;;
1819
esac &&

0 commit comments

Comments
 (0)