diff options
Diffstat (limited to 'third_party/git/t/t7500')
-rwxr-xr-x | third_party/git/t/t7500/add-comments | 4 | ||||
-rwxr-xr-x | third_party/git/t/t7500/add-content | 3 | ||||
-rwxr-xr-x | third_party/git/t/t7500/add-content-and-comment | 5 | ||||
-rwxr-xr-x | third_party/git/t/t7500/add-signed-off | 3 | ||||
-rwxr-xr-x | third_party/git/t/t7500/add-whitespaced-content | 8 | ||||
-rwxr-xr-x | third_party/git/t/t7500/edit-content | 4 |
6 files changed, 0 insertions, 27 deletions
diff --git a/third_party/git/t/t7500/add-comments b/third_party/git/t/t7500/add-comments deleted file mode 100755 index a72e65c8910f..000000000000 --- a/third_party/git/t/t7500/add-comments +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -echo "# this is a new comment" >> "$1" -echo "# and so is this" >> "$1" -exit 0 diff --git a/third_party/git/t/t7500/add-content b/third_party/git/t/t7500/add-content deleted file mode 100755 index 2fa3d86a108d..000000000000 --- a/third_party/git/t/t7500/add-content +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -echo "commit message" >> "$1" -exit 0 diff --git a/third_party/git/t/t7500/add-content-and-comment b/third_party/git/t/t7500/add-content-and-comment deleted file mode 100755 index c4dccff13acf..000000000000 --- a/third_party/git/t/t7500/add-content-and-comment +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -echo "commit message" >> "$1" -echo "# comment" >> "$1" -exit 0 - diff --git a/third_party/git/t/t7500/add-signed-off b/third_party/git/t/t7500/add-signed-off deleted file mode 100755 index e1d856af6d8b..000000000000 --- a/third_party/git/t/t7500/add-signed-off +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -echo "Signed-off-by: foo <bar@frotz>" >> "$1" -exit 0 diff --git a/third_party/git/t/t7500/add-whitespaced-content b/third_party/git/t/t7500/add-whitespaced-content deleted file mode 100755 index ccf07c61a4e9..000000000000 --- a/third_party/git/t/t7500/add-whitespaced-content +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -sed -e 's/|$//' >>"$1" <<\EOF - - | -commit message | - -EOF -exit 0 diff --git a/third_party/git/t/t7500/edit-content b/third_party/git/t/t7500/edit-content deleted file mode 100755 index 08db9fdd2e68..000000000000 --- a/third_party/git/t/t7500/edit-content +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -sed -e "s/intermediate/edited/g" <"$1" >"$1-" -mv "$1-" "$1" -exit 0 |