fix: preserve unicode in filepaths when commit signing

This commit is contained in:
Peter Evans
2024-12-27 10:17:57 +00:00
parent b378ed537a
commit 8f72555ae6
4 changed files with 20 additions and 8 deletions

View File

@ -19,15 +19,15 @@ git clone git://127.0.0.1/repos/test-base.git /git/local/repos/test-base
cd /git/local/repos/test-base
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
echo "#test-base" > README_TEMP.md
echo "#test-base" > READMETEMP.md
git add .
git commit -m "initial commit"
git commit --allow-empty -m "empty commit for tests"
echo "#test-base :sparkles:" > README_TEMP.md
echo "#test-base :sparkles:" > READMETEMP.md
git add .
git commit -m "add sparkles" -m "Change description:
- updates README_TEMP.md to add sparkles to the title"
mv README_TEMP.md README.md
- updates READMETEMP.md to add sparkles to the title"
mv READMETEMP.md README.md
git add .
git commit -m "rename readme"
git push -u