add tests for rebasing with patch-equivalence present
Signed-off-by: Martin von Zweigbergk <martinvonz@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
2aad7cace2
commit
5b5e1c7c78
@ -81,3 +81,20 @@ reset_rebase () {
|
||||
git reset --hard &&
|
||||
git clean -f
|
||||
}
|
||||
|
||||
cherry_pick () {
|
||||
git cherry-pick -n "$2" &&
|
||||
git commit -m "$1" &&
|
||||
git tag "$1"
|
||||
}
|
||||
|
||||
revert () {
|
||||
git revert -n "$2" &&
|
||||
git commit -m "$1" &&
|
||||
git tag "$1"
|
||||
}
|
||||
|
||||
make_empty () {
|
||||
git commit --allow-empty -m "$1" &&
|
||||
git tag "$1"
|
||||
}
|
||||
|
Reference in New Issue
Block a user