We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8715227 + 653a31c commit 3eb1e8eCopy full SHA for 3eb1e8e
1 file changed
git-request-pull.sh
@@ -12,6 +12,9 @@ OPTIONS_SPEC=
12
. git-sh-setup
13
. git-parse-remote
14
15
+GIT_PAGER=
16
+export GIT_PAGER
17
+
18
base=$1
19
url=$2
20
head=${3-HEAD}
@@ -34,16 +37,14 @@ branch=$(git ls-remote "$url" \
34
37
}")
35
38
if [ -z "$branch" ]; then
36
39
echo "warn: No branch of $url is at:" >&2
- git log --max-count=1 --pretty='format:warn: %h: %s' $headrev >&2
40
+ git log --max-count=1 --pretty='tformat:warn: %h: %s' $headrev >&2
41
echo "warn: Are you sure you pushed $head there?" >&2
42
echo >&2
43
44
branch=..BRANCH.NOT.VERIFIED..
45
status=1
46
fi
47
-GIT_PAGER=
-export GIT_PAGER
48
echo "The following changes since commit $baserev:"
49
git shortlog --max-count=1 $baserev | sed -e 's/^\(.\)/ \1/'
50
0 commit comments