You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's one minor issue. git status for an example file name with the ü character.txt would return: file name with the \303\274 character.txt
for git status -z: file name with the ü character.txt
but unfortunately ugit skips the file.
Please fix me in spare time ;).
The text was updated successfully, but these errors were encountered:
mkielek
changed the title
git status doesn't show paths that are escaped
git status doesn't show paths with escaped characters
Aug 18, 2023
@mkielek thanks for reporting this. I think I've seen some issues with git and multibyte characters before. Do you have a repo you can point me to that helps reproduce this issue?
# output 1
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
"file name with the \303\274 character.txt"
nothing added to commit but untracked files present (use "git add" to track)
# output 2
?? file name with the ü character.txt
# output 3
GitRoot: <root path>
On Branch: master
Nothing to commit, working tree clean
Hi,
Great tool!
There's one minor issue.
git status
for an examplefile name with the ü character.txt
would return:file name with the \303\274 character.txt
for
git status -z
:file name with the ü character.txt
but unfortunately ugit skips the file.
Please fix me in spare time ;).
The text was updated successfully, but these errors were encountered: