Git——git clone私有仓库

git clone 私有项目

在clone的时候,在https://后面先加上github-username:github-token,再@项目的链接即可把项目clone下来。

  • GitHub:加的是token;(Token设置:设置Token)
  • Gitee:加的是password;
git clone https://github-username:[email protected]/username/project.git
  • example:kyrle是我的用户名
git clone https://kyrle:[email protected]/kyrle/somethingyoulike.git

设置密码不用反复输入

git remote set-url origin https://<your_token>@github.com/<USERNAME>/<REPO>.git

参考文章:

  • Git clone 克隆私有项目

你可能感兴趣的:(Git,git)