Skip to content

Commit efa615b

Browse files
author
Junio C Hamano
committed
Merge branch 'maint'
* maint: .mailmap: add some aliases SPECIFYING RANGES typo fix: it it => it is git-clone: don't get fooled by $PWD Fix documentation of tag in git-fast-import.txt
2 parents 7f9778b + b722b95 commit efa615b

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.mailmap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ Shawn O. Pearce <[email protected]>
3535
Theodore Ts'o <[email protected]>
3636
Tony Luck <[email protected]>
3737
Uwe Kleine-König <[email protected]>
38+
Uwe Kleine-König <[email protected]>
39+
Uwe Kleine-König <[email protected]>
40+
Uwe Kleine-König <[email protected]>
3841
Ville Skyttä <[email protected]>
3942
YOSHIFUJI Hideaki <[email protected]>
4043
anonymous <[email protected]>
4144
anonymous <[email protected]>
45+
Dana L. How <[email protected]>

Documentation/git-fast-import.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,6 @@ lightweight (non-annotated) tags see the `reset` command below.
548548
'from' SP <committish> LF
549549
'tagger' SP <name> SP LT <email> GT SP <when> LF
550550
data
551-
LF
552551
....
553552

554553
where `<name>` is the name of the tag to create.

Documentation/git-rev-parse.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ reachable from `r1` from the set of commits reachable from
255255
A similar notation "`r1\...r2`" is called symmetric difference
256256
of `r1` and `r2` and is defined as
257257
"`r1 r2 --not $(git-merge-base --all r1 r2)`".
258-
It it the set of commits that are reachable from either one of
258+
It is the set of commits that are reachable from either one of
259259
`r1` or `r2` but not from both.
260260

261261
Two other shorthands for naming a set that is formed by a commit

git-clone.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@ usage() {
1818
}
1919

2020
get_repo_base() {
21-
(cd "$1" && (cd .git ; pwd)) 2> /dev/null
21+
(
22+
cd "`/bin/pwd`" &&
23+
cd "$1" &&
24+
{
25+
cd .git 2>/dev/null
26+
pwd
27+
}
28+
)
2229
}
2330

2431
if [ -n "$GIT_SSL_NO_VERIFY" ]; then

0 commit comments

Comments
 (0)