Squashed 'third_party/git/' content from commit cb71568594
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
This commit is contained in:
commit
1b593e1ea4
3629 changed files with 1139935 additions and 0 deletions
4
t/t7500/add-comments
Executable file
4
t/t7500/add-comments
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
echo "# this is a new comment" >> "$1"
|
||||
echo "# and so is this" >> "$1"
|
||||
exit 0
|
||||
3
t/t7500/add-content
Executable file
3
t/t7500/add-content
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
echo "commit message" >> "$1"
|
||||
exit 0
|
||||
5
t/t7500/add-content-and-comment
Executable file
5
t/t7500/add-content-and-comment
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
echo "commit message" >> "$1"
|
||||
echo "# comment" >> "$1"
|
||||
exit 0
|
||||
|
||||
3
t/t7500/add-signed-off
Executable file
3
t/t7500/add-signed-off
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
echo "Signed-off-by: foo <bar@frotz>" >> "$1"
|
||||
exit 0
|
||||
8
t/t7500/add-whitespaced-content
Executable file
8
t/t7500/add-whitespaced-content
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
sed -e 's/|$//' >>"$1" <<\EOF
|
||||
|
||||
|
|
||||
commit message |
|
||||
|
||||
EOF
|
||||
exit 0
|
||||
4
t/t7500/edit-content
Executable file
4
t/t7500/edit-content
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
sed -e "s/intermediate/edited/g" <"$1" >"$1-"
|
||||
mv "$1-" "$1"
|
||||
exit 0
|
||||
Loading…
Add table
Add a link
Reference in a new issue