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.
OSXを使用しています。
gitを使用してローカルマシンを使用してパブリックプロジェクトに変更をコミットすると、コミットのユーザー名(Webサイトの「commits」の下のプロジェクトページ)は、ローカルマシンで使用するユーザー名であり、 git username .. ..
どうすればこれを変更できますか?ローカルユーザー名をすべての人に公開したくありません。
よろしくお願いします!
以下を使用して、git構成でユーザー名(できれば電子メール)を設定します。 git config --global user.name "your username" git config --global user.email "email@domain"
git config --global user.name "your username"
git config --global user.email "email@domain"