mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
7951bd3029
t7500: test expected behavior of commit --squash t3415: test interaction of commit --squash with rebase --autosquash t3900: test commit --squash with i18n encodings Signed-off-by: Pat Notz <patnotz@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
4 lines
77 B
Bash
Executable file
4 lines
77 B
Bash
Executable file
#!/bin/sh
|
|
sed -e "s/intermediate/edited/g" <"$1" >"$1-"
|
|
mv "$1-" "$1"
|
|
exit 0
|