summaryrefslogtreecommitdiffstats
path: root/test/repos/unicode_characters.sh
blob: 69ac5e622b2434ad2b1020f5db0f9bfd0a451438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
set -ex; rm -rf repo; mkdir repo; cd repo

git init

# Add some ansi, unicode, zero width joiner caracters
cat <<EOT >> charstest.txt
ANSI      Œ	(U+0152	&OElig;	Latin capital ligature OE	Latin Extended-A)
          ¥	(0xA5	U+00A5	&yen;	yes sign)
          ƒ	(0x83	U+0192	&fnof;	Latin small letter f with hook)
ZWJ       https://en.wikipedia.org/wiki/Zero-width_joiner / https://unicode.org/Public/emoji/4.0/emoji-zwj-sequences.txt 👶(👨‍👦)
UNICODE   ☆ 🤓 え 术
EOT
git add charstest.txt
git commit -m "Test chars Œ¥ƒ👶👨‍👦☆ 🤓 え 术 commit"
echo "我喜歡編碼" >> charstest.txt
echo "நான் குறியீடு விரும்புகிறேன்" >> charstest.txt
git add charstest.txt
git commit -m "Test chars 我喜歡編碼 நான் குறியீடு விரும்புகிறேன் commit"