Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
git gui を使用して変更をフェッチしようとしていますが、問題は、パスワードを要求するダイアログ ウィンドウが表示されることです。
OpenSSH Administrator@IP-ADDRESS's password:
ご覧のとおり、ユーザー名は管理者で、これは私の Win7 マシンのアカウント名です。そのユーザー名を変更するにはどうすればよいですか?
ありがとう
git config --global user.name "My Name"
その特定のプロジェクトにのみ必要な場合は、--global.
--global
メールアドレスも変更する必要がある場合は、次のようにします。
git config --global user.email "myname@email.com"