1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Git】PortableGit→GitBucket(Gitlab等)にpushする際に「Authentication failed」が表示された場合の対応

Posted at

はじめに

職場のPC(Windows10)のPortableGit→GitBucketにpushしようとしたところ、「Authentication failed」が表示されpushできませんでした。
こちらの原因と解決方法についてアウトプットしていきたいと思います。

環境

項目 内容
PC Windows10
ローカルリポジトリ PortableGit
リモートリポジトリ GitBucket

状況

  • PortableGit→GitBucketにコードをpushしようとしたところ、認証エラーが表示されpushできず。
fatal: Authentication failed for 'http://192.168.0.150:8080/git/satton-test/test-code.git'

※そもそもユーザー名とパスワードが聞かれない。

  • GitBucket→PortableGitへはコードのpull/clone可能

  • 初期設定に間違いがないことは確認済み

git config --global user.name "satton-test"
git config --global user.email "<email address>"

原因

資格情報マネージャーの資格情報のユーザー名/パスワードに誤りがあった。
(コントロールパネル→ユーザーアカウント→資格情報マネージャー)

1.JPG

対策

正しいユーザー名とパスワードに修正する。

2.JPG

所感

インターネット上を探しても、ほぼ情報が落ちていなかったために苦労しました。。。

参考リンク

GitLabからクローンしようとして認証失敗する場合の対応例

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?