https://git.rvbust.com/rvbust/flex/FlexWelder/-/tree/dev/qiang.qiu/kinglong3如何克隆这个项目
时间: 2023-06-23 19:05:22 浏览: 124
你可以通过以下命令在本地克隆这个项目:
```
git clone https://git.rvbust.com/rvbust/flex/FlexWelder.git --branch dev/qiang.qiu/kinglong3
```
如果你已经在本地有了 FlexWelder 项目的克隆版本,可以进入项目目录并切换到 dev/qiang.qiu/kinglong3 分支:
```
cd FlexWelder
git checkout dev/qiang.qiu/kinglong3
```
这样就可以在本地切换到这个分支并开始进行开发工作。
相关问题
> git clone ssh://git@git.rvbust.com/rvbust/flex/FlexWelder.git /home/rvbust/Desktop/FlexWelding/FlexWelder --progress Warning: Permanently added 'git.rvbust.com' (ED25519) to the list of known hosts. git@git.rvbust.com: Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
这个错误表明你在尝试使用SSH协议从git.rvbust.com服务器的FlexWelder仓库克隆代码时,出现了权限问题。可能的原因是你没有正确的SSH密钥或者没有将公钥添加到git.rvbust.com服务器的authorized_keys文件中。
你可以尝试以下步骤来解决该问题:
1. 确认你的SSH密钥是否正确:运行`ssh -T git@git.rvbust.com`,如果输出`Hi username! You've successfully authenticated, but GitLab does not provide shell access.`则说明SSH密钥已正确配置。
2. 确认你的SSH密钥是否已添加到git.rvbust.com服务器的authorized_keys文件中。可以尝试运行`ssh git@git.rvbust.com`,如果成功连接到服务器,则说明SSH密钥已正确添加。
3. 如果你的SSH密钥未添加到git.rvbust.com服务器的authorized_keys文件中,可以尝试将公钥添加到该文件中。方法是将你的公钥复制到剪贴板,然后在服务器上运行`nano ~/.ssh/authorized_keys`命令打开该文件并将公钥粘贴到其中,最后保存并退出nano编辑器即可。
如果以上步骤都无法解决问题,你可以联系git.rvbust.com服务器的管理员寻求帮助。
阅读全文