mirror of
https://github.com/git/git.git
synced 2026-01-10 10:13:33 +00:00
branch: error code with --edit-description
Since c2d17ba3db (branch --edit-description: protect against mistyped
branch name, 2012-02-05) we return -1 on error editing the branch
description.
Let's change to 1, which follows the established convention and it is
better for portability reasons.
Signed-off-by: Rubén Justo <rjusto@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
db29e6bbae
commit
8f24115165
@@ -1383,7 +1383,7 @@ test_expect_success 'branch --delete --force removes dangling branch' '
|
||||
|
||||
test_expect_success 'use --edit-description' '
|
||||
EDITOR=: git branch --edit-description &&
|
||||
test_must_fail git config branch.main.description &&
|
||||
test_expect_code 1 git config branch.main.description &&
|
||||
|
||||
write_script editor <<-\EOF &&
|
||||
echo "New contents" >"$1"
|
||||
|
||||
Reference in New Issue
Block a user