git では、config コマンドを使用して git パスワードを表示できます。このコマンドは、git を構成するために使用されます。パラメータが "user.password" に設定されている場合、git パスワードを表示できます。構文は「 git config user.password 」です。
この記事の動作環境: Windows 10 システム、Git バージョン 2.30.0、Dell G3 コンピューター。
git のパスワードの確認方法
ユーザー名を表示: git config user.name
パスワードを表示: git config user.password
電子メールの表示: git config user.email
構成情報の表示: $ git config --list
ユーザー名の変更
git config --global user.name "xxxx(新しいユーザー名)"
パスワードの変更
git config --global user.password "xxxx(新しいパスワード)"
変更email
git config --global user.email "xxxx@xxx.com (新しいメール)"
エラー レポートの変更:
原因: ユーザー名が多すぎます
解決策:
$ git config --global --replace-all user.name "You git の名前"
$ git config --global --replace-all uesr.email "あなたの git メール アドレス"
推奨学習: GitTutorial >>
以上がgitのパスワードを確認する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。