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.

backlogからforkでリモートリポジトリをクローンしようとして詰まった件。

Posted at

backlogでGitをcloneするときに気をつけるべき点

結論は「SSH」ではなく「HTTP」にするということ

スクリーンショット 2021-04-20 17.41.28.png
BacklogではGitをcloneするURLを取得する際に上記のようにHTTPとプルダウンでSSHが切り替えられる。
ここをSSHの状態でURLをコピーしてしまうとforkやターミナルでクローンしようとした際に
forkの例)

git@backlog.hoge.jp: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.

ターミナルの例)

 Permission denied (publickey).
fatal: Could not read from remote repository.

のようなエラーになり公開キーの設定などをしないとクローン出来ない。

その為クローンする時はHTTPを選択する。

forkの画面でcloneを選択すればOK
スクリーンショット 2021-04-20 17.50.09.png
フォークでクローンする際にURLの記述がhttpから始まることを確認する

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?