Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t/t7500
diff options
context:
space:
mode:
authorPat Notz <patnotz@gmail.com>2010-11-02 22:59:12 +0300
committerJunio C Hamano <gitster@pobox.com>2010-11-04 23:53:36 +0300
commit7951bd3029a849411181935f84600ddbcd97cd0c (patch)
tree4cf3b80be4a836ee0a9499bd6dfeec0a45214415 /t/t7500
parent89ac1223c08a19a83f6efb32234ed8665d5ad1ee (diff)
add tests of commit --squash
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>
Diffstat (limited to 't/t7500')
-rwxr-xr-xt/t7500/edit-content4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t7500/edit-content b/t/t7500/edit-content
new file mode 100755
index 0000000000..08db9fdd2e
--- /dev/null
+++ b/t/t7500/edit-content
@@ -0,0 +1,4 @@
+#!/bin/sh
+sed -e "s/intermediate/edited/g" <"$1" >"$1-"
+mv "$1-" "$1"
+exit 0