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

アクセストークンを使ってgithubのレポジトリをcloneする

Posted at

何で困ったか

アクセストークンを使用してgit clonegit pull などを行なっていて、
新たにcloneしようとした時、あれ?どうやれば良かったっけ?となってしまったので、
備忘録的に操作内容をメモしておきます。

やり方

  • githubのSettings > Developer settings > Personal access token > Tokens(Classic)
    に進む
  • Generate new tokenをクリック
  • 必要なスコープを選択してトークンを生成
  • トークンをコピーしておく
  • 以下のコマンドでgit clone を行う
git clone https://ghp_YourAccessTokenHere@github.com/username/repository.git

アクセストークンをキャッシュしておきたい場合

git config --global credentials.helper store

を行うと、一度認証を行なっていれば次回以降は自動的に認証情報が利用できる。

言わずもがなの注意

アクセストークンをURLに埋め込んでcloneする場合、第三者にトークンが漏れないように注意してください。
期限付きのトークンにしておくであったり、不要になったら無効化するなどするのが好ましいです。

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