3
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 clone時にAuthentication failedが出るとき

Last updated at Posted at 2020-11-11

Git Labからリポジトリをcloneしようとしてました。
作業環境はmac

ターミナルでgit cloneすると

fatal: Authentication failed for 'https://gitlab.com/xxxx/yyyy_zzzzz.git/'

と怒られが発生しました。

原因:直前にパスワードを変更したため。

普段Gitで管理しているものはアカウントが保存されており、そのまま認証されるようになっている。

前回Authenticationが通ったものを、よかれと思って次回も継続、それで認証してくれようとするので、Authentication failedのエラーが出た模様です。

解決策:もう一回git cloneしてユーザー名とパスワードを入力する(だめならさらにもう一回)。

もう一度git cloneすると、アカウントとユーザー名を問われます。

Username for 'https://gitlab.com': GitLabアカウント
Password for 'https://xxxx@gitlab.com': GitLabパスワード

これでGit Labアカウントが上書きされて、無事cloneできました。

3
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
3
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?