diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:08:22 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:08:22 +0900 |
commit | 8e36002adda45a35c6fc4daf81913c3d2102cb59 (patch) | |
tree | e3640ac0242262814f2b2d4c2a01c4332faeb18c /templates | |
parent | Merge branch 'ma/ts-cleanups' (diff) | |
parent | treewide: correct several "up-to-date" to "up to date" (diff) | |
download | tgif-8e36002adda45a35c6fc4daf81913c3d2102cb59.tar.xz |
Merge branch 'ma/up-to-date'
Message and doc updates.
* ma/up-to-date:
treewide: correct several "up-to-date" to "up to date"
Documentation/user-manual: update outdated example output
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/hooks--pre-rebase.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/hooks--pre-rebase.sample b/templates/hooks--pre-rebase.sample index b7f81c198e..db5feab8a1 100755 --- a/templates/hooks--pre-rebase.sample +++ b/templates/hooks--pre-rebase.sample @@ -58,7 +58,7 @@ then not_in_topic=`git rev-list "^$topic" master` if test -z "$not_in_topic" then - echo >&2 "$topic is already up-to-date with master" + echo >&2 "$topic is already up to date with master" exit 1 ;# we could allow it, but there is no point. else exit 0 |