Git clone 可以選擇使用 http 或者 ssh 協議來克隆遠程倉庫。
使用 HTTP 協議:
git clone https://github.com/user/repo.git
使用 SSH 協議:
首先需要設置 SSH 公鑰,然后可以使用:
git clone git@github.com:user/repo.git
一般來說,使用 SSH 協議需要設置 SSH 公鑰,但相對來說更安全和方便,不需要每次都輸入用戶名和密碼。而使用 HTTP 協議則需要每次輸入用戶名和密碼,相對不太方便。根據個人的需求和喜好來選擇合適的協議。