0
0

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に接続出来なくなった話

Posted at

##経緯
GitHubを使ってcloneしたり、pushしたりを日常的に実施する。
そんな中、ある日突然手元のローカル環境にgitのリポジトリがclone出来なくなった。
その原因を探りつつ、備忘録として記す。

##この記事が実施すること
git cloneがローカル環境で出来なくなった時の対処法を記載する

##解決方法
結論から言うと、単純な問題だった。
「gitアカウントに前までログイン出来ていたのに、ログイン出来なくなった」という事実がある以上、パスワードでのログインが出来なくなったといって良い。
よって、パスワードの代わりに「個人アクセストークン」と呼ばれるものをgit上で作成することで、ログインができるようになった。

公式のドキュメントを参考にtokenを作成
②コマンドプロンプトを開く
③clone実行

# git clone repository_name.git

##まとめ
パスワード入力でダメならtokenを発行する!!

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?