-
-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: preserve unicode in filepaths when commit signing (#3588)
- Loading branch information
1 parent
bb88e27
commit 67ccf78
Showing
4 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 "[email protected]" | ||
git config --global user.name "Your Name" | ||
echo "#test-base" > README_TEMP.md | ||
echo "#test-base" > README→TEMP.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:" > README→TEMP.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 README→TEMP.md to add sparkles to the title" | ||
mv README→TEMP.md README.md | ||
git add . | ||
git commit -m "rename readme" | ||
git push -u | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters