|
|
|
@ -77,7 +77,7 @@ test_expect_success 'status when rebase in progress before resolving conflicts'
|
|
|
|
|
ONTO=$(git rev-parse --short HEAD^^) &&
|
|
|
|
|
test_must_fail git rebase HEAD^ --onto HEAD^^ &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached at $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently rebasing branch '\''rebase_conflicts'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (fix conflicts and then run "git rebase --continue")
|
|
|
|
|
# (use "git rebase --skip" to skip this patch)
|
|
|
|
@ -104,7 +104,7 @@ test_expect_success 'status when rebase in progress before rebase --continue' '
|
|
|
|
|
echo three >main.txt &&
|
|
|
|
|
git add main.txt &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached at $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently rebasing branch '\''rebase_conflicts'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (all conflicts fixed: run "git rebase --continue")
|
|
|
|
|
#
|
|
|
|
@ -136,7 +136,7 @@ test_expect_success 'status during rebase -i when conflicts unresolved' '
|
|
|
|
|
ONTO=$(git rev-parse --short rebase_i_conflicts) &&
|
|
|
|
|
test_must_fail git rebase -i rebase_i_conflicts &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached at $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently rebasing branch '\''rebase_i_conflicts_second'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (fix conflicts and then run "git rebase --continue")
|
|
|
|
|
# (use "git rebase --skip" to skip this patch)
|
|
|
|
@ -162,7 +162,7 @@ test_expect_success 'status during rebase -i after resolving conflicts' '
|
|
|
|
|
test_must_fail git rebase -i rebase_i_conflicts &&
|
|
|
|
|
git add main.txt &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached at $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently rebasing branch '\''rebase_i_conflicts_second'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (all conflicts fixed: run "git rebase --continue")
|
|
|
|
|
#
|
|
|
|
@ -188,10 +188,9 @@ test_expect_success 'status when rebasing -i in edit mode' '
|
|
|
|
|
export FAKE_LINES &&
|
|
|
|
|
test_when_finished "git rebase --abort" &&
|
|
|
|
|
ONTO=$(git rev-parse --short HEAD~2) &&
|
|
|
|
|
TGT=$(git rev-parse --short two_rebase_i) &&
|
|
|
|
|
git rebase -i HEAD~2 &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $TGT
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently editing a commit while rebasing branch '\''rebase_i_edit'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (use "git commit --amend" to amend the current commit)
|
|
|
|
|
# (use "git rebase --continue" once you are satisfied with your changes)
|
|
|
|
@ -216,9 +215,8 @@ test_expect_success 'status when splitting a commit' '
|
|
|
|
|
ONTO=$(git rev-parse --short HEAD~3) &&
|
|
|
|
|
git rebase -i HEAD~3 &&
|
|
|
|
|
git reset HEAD^ &&
|
|
|
|
|
TGT=$(git rev-parse --short HEAD) &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached at $TGT
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently splitting a commit while rebasing branch '\''split_commit'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (Once your working directory is clean, run "git rebase --continue")
|
|
|
|
|
#
|
|
|
|
@ -246,11 +244,10 @@ test_expect_success 'status after editing the last commit with --amend during a
|
|
|
|
|
export FAKE_LINES &&
|
|
|
|
|
test_when_finished "git rebase --abort" &&
|
|
|
|
|
ONTO=$(git rev-parse --short HEAD~3) &&
|
|
|
|
|
TGT=$(git rev-parse --short three_amend) &&
|
|
|
|
|
git rebase -i HEAD~3 &&
|
|
|
|
|
git commit --amend -m "foo" &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $TGT
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently editing a commit while rebasing branch '\''amend_last'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (use "git commit --amend" to amend the current commit)
|
|
|
|
|
# (use "git rebase --continue" once you are satisfied with your changes)
|
|
|
|
@ -280,7 +277,7 @@ test_expect_success 'status: (continue first edit) second edit' '
|
|
|
|
|
git rebase -i HEAD~3 &&
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently editing a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (use "git commit --amend" to amend the current commit)
|
|
|
|
|
# (use "git rebase --continue" once you are satisfied with your changes)
|
|
|
|
@ -302,7 +299,7 @@ test_expect_success 'status: (continue first edit) second edit and split' '
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
git reset HEAD^ &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently splitting a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (Once your working directory is clean, run "git rebase --continue")
|
|
|
|
|
#
|
|
|
|
@ -329,7 +326,7 @@ test_expect_success 'status: (continue first edit) second edit and amend' '
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
git commit --amend -m "foo" &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently editing a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (use "git commit --amend" to amend the current commit)
|
|
|
|
|
# (use "git rebase --continue" once you are satisfied with your changes)
|
|
|
|
@ -351,7 +348,7 @@ test_expect_success 'status: (amend first edit) second edit' '
|
|
|
|
|
git commit --amend -m "a" &&
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently editing a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (use "git commit --amend" to amend the current commit)
|
|
|
|
|
# (use "git rebase --continue" once you are satisfied with your changes)
|
|
|
|
@ -374,7 +371,7 @@ test_expect_success 'status: (amend first edit) second edit and split' '
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
git reset HEAD^ &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently splitting a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (Once your working directory is clean, run "git rebase --continue")
|
|
|
|
|
#
|
|
|
|
@ -402,7 +399,7 @@ test_expect_success 'status: (amend first edit) second edit and amend' '
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
git commit --amend -m "d" &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently editing a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (use "git commit --amend" to amend the current commit)
|
|
|
|
|
# (use "git rebase --continue" once you are satisfied with your changes)
|
|
|
|
@ -426,7 +423,7 @@ test_expect_success 'status: (split first edit) second edit' '
|
|
|
|
|
git commit -m "e" &&
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently editing a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (use "git commit --amend" to amend the current commit)
|
|
|
|
|
# (use "git rebase --continue" once you are satisfied with your changes)
|
|
|
|
@ -451,7 +448,7 @@ test_expect_success 'status: (split first edit) second edit and split' '
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
git reset HEAD^ &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently splitting a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (Once your working directory is clean, run "git rebase --continue")
|
|
|
|
|
#
|
|
|
|
@ -481,7 +478,7 @@ test_expect_success 'status: (split first edit) second edit and amend' '
|
|
|
|
|
git rebase --continue &&
|
|
|
|
|
git commit --amend -m "h" &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached from $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently editing a commit while rebasing branch '\''several_edits'\'' on '\''$ONTO'\''.
|
|
|
|
|
# (use "git commit --amend" to amend the current commit)
|
|
|
|
|
# (use "git rebase --continue" once you are satisfied with your changes)
|
|
|
|
@ -601,7 +598,7 @@ test_expect_success 'status when rebase conflicts with statushints disabled' '
|
|
|
|
|
ONTO=$(git rev-parse --short HEAD^^) &&
|
|
|
|
|
test_must_fail git rebase HEAD^ --onto HEAD^^ &&
|
|
|
|
|
cat >expected <<-EOF &&
|
|
|
|
|
# HEAD detached at $ONTO
|
|
|
|
|
# rebase in progress; onto $ONTO
|
|
|
|
|
# You are currently rebasing branch '\''statushints_disabled'\'' on '\''$ONTO'\''.
|
|
|
|
|
#
|
|
|
|
|
# Unmerged paths:
|
|
|
|
@ -669,7 +666,7 @@ test_expect_success 'status when cherry-picking after resolving conflicts' '
|
|
|
|
|
test_i18ncmp expected actual
|
|
|
|
|
'
|
|
|
|
|
|
|
|
|
|
test_expect_success 'status showing detached from a tag' '
|
|
|
|
|
test_expect_success 'status showing detached at and from a tag' '
|
|
|
|
|
test_commit atag tagging &&
|
|
|
|
|
git checkout atag &&
|
|
|
|
|
cat >expected <<-\EOF
|
|
|
|
@ -677,6 +674,14 @@ test_expect_success 'status showing detached from a tag' '
|
|
|
|
|
nothing to commit (use -u to show untracked files)
|
|
|
|
|
EOF
|
|
|
|
|
git status --untracked-files=no >actual &&
|
|
|
|
|
test_i18ncmp expected actual &&
|
|
|
|
|
|
|
|
|
|
git reset --hard HEAD^ &&
|
|
|
|
|
cat >expected <<-\EOF
|
|
|
|
|
# HEAD detached from atag
|
|
|
|
|
nothing to commit (use -u to show untracked files)
|
|
|
|
|
EOF
|
|
|
|
|
git status --untracked-files=no >actual &&
|
|
|
|
|
test_i18ncmp expected actual
|
|
|
|
|
'
|
|
|
|
|
|
|
|
|
|