解決したいこと
Git bash経由でgit pushしようとすると次のようなエラーが出てpushできません。
bash
1fatal: unable to access "https:/github.com(pushしたいgitのURL)": Failed to convert github.com to ACE; could not convert string to UTF-8
この事象の解決方法をご存知の方いませんか?
###開発環境
OS: Windows10
git for windows: version 2.29.2.windows.3
ここまでにしたこと
- 叩いたコマンド
bash
1git init 2touch ファイル名 3git add ファイル名 4git commit -m "コメント" 5git push ←ここでエラー吐く
- 確認したこと
パスに日本語がはいっていないこと:pwdで表示される現在のディレクトリのパスには日本語は含まれていませんでした。
(https://teratail.com/questions/225817 に文字コードのことが書かれていたため確認しました。)
追記
VScodeからpushしようとしたところ
> git push -u origin master fatal: unable to access 'https://github.com/(リポジトリ名)': Failed to convert github.com to ACE; could not convert string to UTF-8
というエラーがでており、githubのURLに謎の文字が混入しているのではないかと思っています。
あなたの回答
tips
プレビュー