How to set up your username in Git if it contains special characters?

Hey there. I am using Git for windows (msysgit project). And work with Git Bash. I also push my programmed materials to gitHub. The problem is that my gitHub username contains the character "č" and Git Bash does not allow me to enter it. Is there any way to set my -global user.name in my Git settings to contain this "č" character?

Thank.

+3
source share
2 answers

git config --edit will open your gitconfig [1] in the editor, you can install it manually.

[1] gitconfigs, git -config (1):

- system, --global --file, , . .git/config, GIT_DIR GIT_CONFIG

+3

C:\* username * \. gitconfig

0

Source: https://habr.com/ru/post/1764452/


All Articles